summaryrefslogtreecommitdiffstats
path: root/Project/FileHanding.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-04-17 20:25:10 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-04-17 20:25:10 -0300
commit0ec05e0cb396a9ef153d29f605d4a0bbeb0dc7c1 (patch)
tree35f1727f8eb959cf1c55798f7e6a2ef1d83db897 /Project/FileHanding.h
parent52931022eb25080e33f2362c3b0bd4361f0cdb0b (diff)
downloadPSP.git-0ec05e0cb396a9ef153d29f605d4a0bbeb0dc7c1.tar.gz
PSP.git-0ec05e0cb396a9ef153d29f605d4a0bbeb0dc7c1.tar.xz
PSP.git-0ec05e0cb396a9ef153d29f605d4a0bbeb0dc7c1.zip
Connection line import under implementation
Parent line not implemented yet
Diffstat (limited to 'Project/FileHanding.h')
-rw-r--r--Project/FileHanding.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Project/FileHanding.h b/Project/FileHanding.h
index 8783070..28efa83 100644
--- a/Project/FileHanding.h
+++ b/Project/FileHanding.h
@@ -31,7 +31,7 @@ public:
bool OpenProject(wxFileName path);
void SaveControl(wxFileName path);
- bool OpenControl(wxFileName path);
+ bool OpenControl(wxFileName path, std::vector<ControlElement*>& ctrlElementList, std::vector<ConnectionLine*>& ctrlConnectionList);
protected:
Workspace* m_workspace = NULL;
@@ -54,7 +54,6 @@ protected:
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);
ControlElement* GetControlElementFromID(std::vector<ControlElement*> elementList, int id);
};