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.hpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/Model/Elements/StringElement.hpp b/src/Model/Elements/StringElement.hpp
deleted file mode 100644
index 55c5473..0000000
--- a/src/Model/Elements/StringElement.hpp
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef _STRINGELEMENT_
-#define _STRINGELEMENT_
-
-
-
-
-#include <string>
-
-
-
-class StringElement
-{
- private:
- std::string m_value;
-
- public:
- StringElement();
- ~StringElement();
-
- std::string getValue();
- void setValue(std::string value);
-
- bool isEmpty();
- bool equals(StringElement *element);
- std::string description();
-
-};
-
-#endif