summaryrefslogtreecommitdiff
path: root/src/Model/Cell.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Model/Cell.hpp')
-rw-r--r--src/Model/Cell.hpp74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/Model/Cell.hpp b/src/Model/Cell.hpp
deleted file mode 100644
index 3371fda..0000000
--- a/src/Model/Cell.hpp
+++ /dev/null
@@ -1,74 +0,0 @@
-#ifndef DEF_CELL
-#define DEF_CELL
-
-/* Cell.h
- * Defines the class Cell
- * A cell represents a cell in the grid
- * Creators : krilius, manzerbredes
- * Date : 29/04/2015 */
-
-#include <iostream>
-
-
-template<class T> class Cell
-{
- private:
- T* m_Element;
-
- public:
-
- //Constructor
- Cell(std::string value)
- {
- m_Element=new T();
- m_Element->setValue(value);
- }
-
-
- //Destructor
- ~Cell()
- {
- delete m_Element;
- }
-
- //Test if the cell is empty
- bool isEmpty()
- {
- return this->m_Element->isEmpty();
- }
-
- T* getElement(){
- return this->m_Element;
- }
-
- bool equals(Cell<T> *cell){
- if(m_Element->equals(cell->getElement())){
- return true;
- }
- return false;
- }
-
- //Return the element value
- std::string getElementValue()
- {
- return m_Element->getValue();
- }
-
-
- // Description
- std::string description()
- {
- return m_Element->description();
- }
-
-};
-
-
-
-template<class T>
-bool operator==(Cell<T> a, Cell<T> b){
- return a.equals(&b);
-}
-
-#endif
-