summaryrefslogtreecommitdiff
path: root/src/Model/Elements/StringElement.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Elements/StringElement.hpp')
-rw-r--r--src/Model/Elements/StringElement.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/Model/Elements/StringElement.hpp b/src/Model/Elements/StringElement.hpp
new file mode 100644
index 0000000..db40f58
--- /dev/null
+++ b/src/Model/Elements/StringElement.hpp
@@ -0,0 +1,26 @@
+#ifndef _STRINGELEMENT_
+#define _STRINGELEMENT_
+
+
+
+
+#include <string>
+
+
+
+class StringElement
+{
+ private:
+ std::string m_value;
+
+ public:
+ StringElement();
+ ~StringElement();
+
+ std::string getValue();
+ void setValue(std::string value);
+
+ std::string description();
+};
+
+#endif