aboutsummaryrefslogtreecommitdiff
path: root/Compiler/includes/compiler.hpp
blob: d761dcfdb73287dc72c0e27a76359c7f17984691 (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
{
  Bold,
  Italic,
  Underline,
  StrikeThrough,
  ListItem,
  Heading
};

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

#endif // __COMPILER_H_