diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-27 21:11:30 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-27 21:11:30 +0000 |
commit | 819c54e3aef494b9b05c6b22a7f1139ec8e0d323 (patch) | |
tree | 7e00b02f83988cab0a8f3a033d9ec82e2fe161cf | |
parent | 80dc1495162ed4746c8db08e5931109393c29546 (diff) |
Defined a deprecated xpath_type_t for compatibility
git-svn-id: http://pugixml.googlecode.com/svn/trunk@547 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | src/pugixml.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index b9b4808..afc4ddc 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -357,6 +357,10 @@ namespace pugi xpath_type_boolean ///< Boolean
};
+ /// XPath query return type classification
+ /// \deprecated This type is deprecated and will be removed in future versions; use xpath_value_type instead
+ typedef xpath_value_type xpath_type_t;
+
/**
* A class that holds compiled XPath query and allows to evaluate query result
*/
|