aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-05-23 19:43:54 +0100
committerdx <aryadevchavali1@gmail.com>2020-05-23 19:56:20 +0100
commitcc3e5131c9b39fc6422576b6bf1bff5fedeb6169 (patch)
treea856721448dcd12a5c83a9efd3e43108d47a1176
parente17e84e92d77c5f8fc40ec5bcbc0eb2e9f212dbf (diff)
downloadmdhtml-cc3e5131c9b39fc6422576b6bf1bff5fedeb6169.tar.gz
mdhtml-cc3e5131c9b39fc6422576b6bf1bff5fedeb6169.tar.bz2
mdhtml-cc3e5131c9b39fc6422576b6bf1bff5fedeb6169.zip
+compiler header C++
-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_