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