Browse Source

Make nodeType, nodeName, nodeValue public

Hugh Sanderson 16 years ago
parent
commit
4befdc87d8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      std/cpp/CppXml__.hx

+ 3 - 3
std/cpp/CppXml__.hx

@@ -165,17 +165,17 @@ class CppXml__ {
 		accessing other functions since some might raise an exception
 		if the node type is not correct.
 	**/
-	var nodeType(default,null) : XmlType;
+	public var nodeType(default,null) : XmlType;
 
 	/**
 		Returns the node name of an Element.
 	**/
-	var nodeName(getNodeName,setNodeName) : String;
+	public var nodeName(getNodeName,setNodeName) : String;
 
 	/**
 		Returns the node value. Only works if the Xml node is not an Element or a Document.
 	**/
-	var nodeValue(getNodeValue,setNodeValue) : String;
+	public var nodeValue(getNodeValue,setNodeValue) : String;
 
 
 	private function getNodeName() : String {