]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/ParsedSource.h
revised array type notation
[l2e.git] / src / loader / ParsedSource.h
index e10b287aa661fbd9b5b9cdfac71c593d0714dc47..5012729b93344e0f521b9fd79b1bf1803b384260 100644 (file)
@@ -36,7 +36,7 @@ public:
 
 public:
        explicit Literal(const std::vector<Value *> &);
-       explicit Literal(const std::vector<PropertyList *> &);
+       Literal(const std::string &, const std::vector<PropertyList *> &);
        explicit Literal(bool);
        Literal(int r, int g, int b, int a = 255);
        explicit Literal(int number);
@@ -71,7 +71,7 @@ public:
 
 private:
        PropertyList *props;
-       std::string str;
+       std::string typeName, str;
        std::vector<Value *> values;
        std::vector<PropertyList *> propertyLists;
        int i1, i2, i3, i4;