浏览代码

Make nodeType, nodeName, nodeValue public

Hugh Sanderson 16 年之前
父节点
当前提交
4befdc87d8
共有 1 个文件被更改,包括 3 次插入3 次删除
  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 {