]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/ParsedSource.h
removed stupid file headers that eclipse put in
[l2e.git] / src / loader / ParsedSource.h
index 9ba52972a4b5bcf797fc32fc62d80db9f183553e..b0578a78e548d017f7834d7cd810e889f0992089 100644 (file)
@@ -1,10 +1,3 @@
-/*
- * ParsedSource.h
- *
- *  Created on: Aug 26, 2012
- *      Author: holy
- */
-
 #ifndef LOADER_PARSEDSOURCE_H_
 #define LOADER_PARSEDSOURCE_H_
 
@@ -26,6 +19,7 @@ public:
                REGISTER,
                IDENTIFIER,
                LITERAL,
+               LABEL,
        };
 
        ScriptToken(const std::string &, Type);
@@ -39,7 +33,8 @@ public:
        Type GetType() const { return type; }
        const std::string &RegisterName() const;
        const std::string &CommandName() const;
-       const std::string &GetIdentifier() const;
+       const std::string &Identifier() const;
+       const std::string &Label() const;
        const Literal *GetLiteral() const;
 
 private: