aboutsummaryrefslogtreecommitdiff
path: root/Compiler/includes/compiler.hpp
blob: bd97a8e1e65596c2e89c006272849f0b319e74f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __COMPILER_H_
#define __COMPILER_H_

#include <string>

enum Type
{
  Bold,
  Italic,
  Underline,
  StrikeThrough,
  ListItem,
  Heading
};

std::string compile_line(const char *raw);
std::string compile_file(const char *filename);

#endif // __COMPILER_H_