source: proiecte/SIMEO/Simeo/src/SimeoEngine/X.h @ 167

Last change on this file since 167 was 167, checked in by (none), 14 years ago

Simeo: added final project and also older proof of concept code.

We used Git for version control, so look at the Git repo
in SIMEO/Simeo/ for more info.

File size: 227 bytes
Line 
1#ifndef X_H
2#define X_H
3
4#include "Channel.h"
5
6
7class X
8{
9protected:
10        Channel *m_chan;
11
12public:
13        X(Channel *chan);
14        ~X();
15
16        virtual void updatePre() { };
17        virtual void updatePost() { };
18
19        Channel *getChannel();
20};
21
22#endif//X_H
Note: See TracBrowser for help on using the repository browser.