aboutsummaryrefslogtreecommitdiff
path: root/Compiler/includes
diff options
context:
space:
mode:
Diffstat (limited to 'Compiler/includes')
-rw-r--r--Compiler/includes/compiler.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Compiler/includes/compiler.hpp b/Compiler/includes/compiler.hpp
new file mode 100644
index 0000000..808b21f
--- /dev/null
+++ b/Compiler/includes/compiler.hpp
@@ -0,0 +1,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_