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

#include <string>

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

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

#endif // __COMPILER_H_