summaryrefslogtreecommitdiff
path: root/src/Model/Elements/StringElement.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-05-02 18:15:14 +0200
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-05-02 18:15:14 +0200
commit27d646af15bc9147a141aced8cebd30668de9a8e (patch)
tree81fab7651570910f9232e90b50ba43c061585858 /src/Model/Elements/StringElement.hpp
parent6b8a144bd192de206e11a171841ec6161d11b6aa (diff)
Restart project
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