summaryrefslogtreecommitdiff
path: root/src/parse/preproc.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/preproc.hpp')
-rw-r--r--src/parse/preproc.hpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/parse/preproc.hpp b/src/parse/preproc.hpp
deleted file mode 100644
index 08fda12d..00000000
--- a/src/parse/preproc.hpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef PREPROC_H
-#define PREPROC_H
-
-#include "lex.hpp"
-
-class Preproc:
- public TokenStream
-{
- ::std::string m_path;
- unsigned int m_line;
- Lexer m_lex;
-
-public:
- Preproc(::std::string path);
- ~Preproc();
-
- virtual Position getPosition() const override;
- virtual Token realGetToken() override;
-private:
- Token getTokenInt();
-};
-
-#endif // PREPROC_H