diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-17 20:25:10 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-17 20:25:10 -0300 |
commit | 0ec05e0cb396a9ef153d29f605d4a0bbeb0dc7c1 (patch) | |
tree | 35f1727f8eb959cf1c55798f7e6a2ef1d83db897 /Project/FileHanding.h | |
parent | 52931022eb25080e33f2362c3b0bd4361f0cdb0b (diff) | |
download | PSP.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.h | 3 |
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); }; |