summaryrefslogtreecommitdiff
path: root/src/Model/Cell.hpp
blob: 7638c4ee3dd0927a814c6710d991f1c6b1145d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#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;
		}

		
		bool isEmpty()
		{
		    return true;
		}

		std::string getElementValue()
		{
		    return m_Element->getValue();
		}

		bool equals(Cell *otherCell)
		{
			return true;
		}

		// Description
		std::string description()
		{
			return m_Element->description();
		}

};

#endif