diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-21 05:54:52 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-21 05:54:52 +0000 |
commit | 4887f62bea708f24e03b3f926f2698c60a94c807 (patch) | |
tree | 77271e92cf517cbc2846897f7482c9df5efee124 /src/viewer.h | |
parent | df5286fe3bca619beb4771da1ffa8ace9613e9e5 (diff) | |
download | build-4887f62bea708f24e03b3f926f2698c60a94c807.tar.gz build-4887f62bea708f24e03b3f926f2698c60a94c807.tar.bz2 build-4887f62bea708f24e03b3f926f2698c60a94c807.tar.xz build-4887f62bea708f24e03b3f926f2698c60a94c807.zip |
Getting there, it compiles, now for the fun sophisticated pieces where the
builder itself tells the lexer which tokens are functions, and which are target
types.
Diffstat (limited to 'src/viewer.h')
-rw-r--r-- | src/viewer.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/viewer.h b/src/viewer.h new file mode 100644 index 0000000..04f4ea7 --- /dev/null +++ b/src/viewer.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #ifndef VIEWER_H | ||
2 | #define VIEWER_H | ||
3 | |||
4 | #include <stdint.h> | ||
5 | |||
6 | |||
7 | class Viewer | ||
8 | { | ||
9 | public: | ||
10 | Viewer(); | ||
11 | virtual ~Viewer(); | ||
12 | |||
13 | private: | ||
14 | |||
15 | }; | ||
16 | |||
17 | #endif | ||