summaryrefslogtreecommitdiff
path: root/src/gui/GElement.h
blob: a62ff74f7fc979ccefdb680d5ce1387bea32dd74 (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
/*
 * GElement.h
 *
 *  Created on: Mar 31, 2011
 *      Author: jakob
 */

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

namespace vhc {

class GElement {

	Element& element;

public:
	GElement(Element& element);


	virtual ~GElement();

};

}

#endif /* GELEMENT_H_ */