summaryrefslogtreecommitdiffstats
path: root/Project/FileHanding.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/FileHanding.h')
-rw-r--r--Project/FileHanding.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Project/FileHanding.h b/Project/FileHanding.h
index a00d929..8783070 100644
--- a/Project/FileHanding.h
+++ b/Project/FileHanding.h
@@ -50,10 +50,12 @@ protected:
double GetNodeValueDouble(rapidxml::xml_node<>* parent, const char* nodeName);
int GetNodeValueInt(rapidxml::xml_node<>* parent, const char* nodeName);
int GetAttributeValueInt(rapidxml::xml_node<>* parent, const char* nodeName, const char* atrName);
+ int GetAttributeValueInt(rapidxml::xml_node<>* node, const char* atrName);
void SaveControlElements(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* elementsNode);
void SaveControlNodes(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* nodesN, std::vector<Node*> nodeList);
- void SaveControlChildren(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* childrenNode, std::vector<Node*> childList);
+ //void SaveControlChildren(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* childrenNode, std::vector<Node*> childList);
+ ControlElement* GetControlElementFromID(std::vector<ControlElement*> elementList, int id);
};
#endif // FILEHANDING_H