source: proiecte/SIMEO/Simeo/src/SimeoEngine/CommChannel.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: 243 bytes
Line 
1#ifndef COMMCHANNEL_H
2#define COMMCHANNEL_H
3
4#include "X.h"
5
6
7class CommChannel : public X
8{
9private:
10        int m_orient;
11
12public:
13        CommChannel(Channel *chan, int orient);
14        ~CommChannel();
15
16        void update();
17
18        int getOrient();
19};
20
21#endif//ACTUATOR_H
Note: See TracBrowser for help on using the repository browser.