summaryrefslogtreecommitdiff
path: root/src/pim/Scanner.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pim/Scanner.h')
-rw-r--r--src/pim/Scanner.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/pim/Scanner.h b/src/pim/Scanner.h
deleted file mode 100644
index 70e02ac..0000000
--- a/src/pim/Scanner.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#pragma once
-
-#include <string>
-#include <sstream>
-#include "Token.h"
-namespace pim
-{
- namespace compiler
- {
- class Scanner
- {
- char cChar;
- int cLine;
- std::string cToken;
- std::stringstream & source;
- void nextCharacter();
- public:
- Scanner(std::stringstream & source_);
- Token NextToken();
- };
- }
-}