From cc3e5131c9b39fc6422576b6bf1bff5fedeb6169 Mon Sep 17 00:00:00 2001
From: dx <aryadevchavali1@gmail.com>
Date: Sat, 23 May 2020 19:43:54 +0100
Subject: +compiler header C++

---
 Compiler/includes/compiler.hpp | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 Compiler/includes/compiler.hpp

(limited to 'Compiler/includes')

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_
-- 
cgit v1.2.3-13-gbd6f