diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2018-01-04 19:11:08 -0200 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2018-01-04 19:11:08 -0200 |
commit | 76df1de5e2307229da9870306e4a1031170aaadf (patch) | |
tree | 6d7144e9982a824474279f02574c918ce8fa0e9d /Project/Constant.h | |
parent | cef9e14b989a3ba19321e4fe215ada2ee3998037 (diff) | |
download | PSP.git-76df1de5e2307229da9870306e4a1031170aaadf.tar.gz PSP.git-76df1de5e2307229da9870306e4a1031170aaadf.tar.xz PSP.git-76df1de5e2307229da9870306e4a1031170aaadf.zip |
Control elements file handling reorganized
Diffstat (limited to 'Project/Constant.h')
-rw-r--r-- | Project/Constant.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Project/Constant.h b/Project/Constant.h index b9e9f93..d61e1f0 100644 --- a/Project/Constant.h +++ b/Project/Constant.h @@ -48,6 +48,9 @@ class Constant : public ControlElement virtual double GetValue() const { return m_value; } virtual void UpdatePoints(); + virtual void SaveElement(rapidxml::xml_document<>& doc, rapidxml::xml_node<>* elementListNode); + virtual bool OpenElement(rapidxml::xml_node<>* elementNode); + virtual Element* GetCopy(); protected: |