1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef __COMPILER_H_ #define __COMPILER_H_ #include <string> enum Type { Bold, Italic, Underline, StrikeThrough, ListItem, Heading }; std::string compile_line(const char *raw); std::string compile_file(const char *filename); #endif // __COMPILER_H_