summaryrefslogtreecommitdiffstats
path: root/Source/ThirdParty/ANGLE/src/compiler/preprocessor/new/Preprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/ThirdParty/ANGLE/src/compiler/preprocessor/new/Preprocessor.h')
-rw-r--r--Source/ThirdParty/ANGLE/src/compiler/preprocessor/new/Preprocessor.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/Source/ThirdParty/ANGLE/src/compiler/preprocessor/new/Preprocessor.h b/Source/ThirdParty/ANGLE/src/compiler/preprocessor/new/Preprocessor.h
new file mode 100644
index 0000000..885bb70
--- /dev/null
+++ b/Source/ThirdParty/ANGLE/src/compiler/preprocessor/new/Preprocessor.h
@@ -0,0 +1,42 @@
+//
+// Copyright (c) 2011 The ANGLE Project Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+//
+
+#ifndef COMPILER_PREPROCESSOR_PREPROCESSOR_H_
+#define COMPILER_PREPROCESSOR_PREPROCESSOR_H_
+
+#include "common/angleutils.h"
+#include "Token.h"
+
+namespace pp
+{
+
+class Context;
+
+class Preprocessor
+{
+ public:
+ Preprocessor();
+ ~Preprocessor();
+
+ bool init();
+
+ bool process(int count, const char* const string[], const int length[]);
+ TokenIterator begin() const { return mTokens.begin(); }
+ TokenIterator end() const { return mTokens.end(); }
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(Preprocessor);
+
+ // Reset to initialized state.
+ void reset();
+
+ Context* mContext;
+ TokenVector mTokens; // Output.
+};
+
+} // namespace pp
+#endif // COMPILER_PREPROCESSOR_PREPROCESSOR_H_
+