summaryrefslogtreecommitdiff
path: root/src/gui/graphicals.h
blob: c944e7e7d0b22a1140b95694fbfa5a795a7bb072 (plain) (blame)
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
/*
 * graphicals.h
 *
 *  Created on: Apr 2, 2011
 *      Author: jakob
 */

#ifndef GRAPHICALS_H_
#define GRAPHICALS_H_
#include "Element.h"

namespace vhc {

class Renderable {

public:

	Renderable() {};

	virtual ~Renderable() {};

	virtual void render() const = 0;

};

template <class T>;
class Graphical: public Renderable {
private:
	T* element
};


}

#endif /* GRAPHICALS_H_ */