1 #ifndef GLOBALVARIABLE_HPP
2 #define GLOBALVARIABLE_HPP
3 #include <sngcm/cmparser/ParserApi.hpp>
4 #include <sngcm/ast/GlobalVariable.hpp>
5 #include <sngcm/cmparser/ParsingContext.hpp>
6 #include <soulng/lexer/Token.hpp>
7 #include <soulng/parser/Match.hpp>
8 #include <soulng/parser/Value.hpp>
9
10
11
12 class CmajorLexer;
13
14 struct GlobalVariableParser
15 {
16 static soulng::parser::Match GlobalVariable(CmajorLexer& lexer, boost::uuids::uuid* moduleId, ParsingContext* ctx, sngcm::ast::CompileUnitNode* cu);
17 };
18
19 #endif // GLOBALVARIABLE_HPP