From: Mathias Froehlich Date: Sat, 21 Jul 2012 10:55:53 +0000 (+0200) Subject: hla: Remove deprecated types and methods from HLADataElement. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=199419ae62d43ba3a9cef31ce97c4ee64eb50158;p=simgear.git hla: Remove deprecated types and methods from HLADataElement. --- diff --git a/simgear/hla/HLADataElement.hxx b/simgear/hla/HLADataElement.hxx index 0cb14e61..079c5cec 100644 --- a/simgear/hla/HLADataElement.hxx +++ b/simgear/hla/HLADataElement.hxx @@ -147,15 +147,12 @@ public: }; typedef std::list Path; typedef std::pair StringPathPair; - typedef StringPathPair AttributePathPair; // deprecated typedef std::pair 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; }