]> git.mxchange.org Git - simgear.git/commitdiff
hla: Remove deprecated types and methods from HLADataElement.
authorMathias Froehlich <Mathias.Froehlich@web.de>
Sat, 21 Jul 2012 10:55:53 +0000 (12:55 +0200)
committerMathias Froehlich <Mathias.Froehlich@web.de>
Sat, 21 Jul 2012 10:55:53 +0000 (12:55 +0200)
simgear/hla/HLADataElement.hxx

index 0cb14e615991ac785fae8def5dc4f864059d50ff..079c5cecd4625074023dda4653b02a5598a86832 100644 (file)
@@ -147,15 +147,12 @@ public:
     };
     typedef std::list<PathElement> Path;
     typedef std::pair<std::string, Path> StringPathPair;
-    typedef StringPathPair AttributePathPair; // deprecated
     typedef std::pair<unsigned, Path> IndexPathPair;
 
     static std::string toString(const Path& path);
     static std::string toString(const StringPathPair& path)
     { return path.first + toString(path.second); }
     static StringPathPair toStringPathPair(const std::string& s);
-    static AttributePathPair toAttributePathPair(const std::string& s) // deprecated
-    { return toStringPathPair(s); }
     static Path toPath(const std::string& s)
     { return toStringPathPair(s).second; }