source: proiecte/SIMEO/Simeo/src/SimeoEngine/X.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: 150 bytes
Line 
1#include <stdio.h>
2#include "X.h"
3
4X::X(Channel *chan)
5{
6        m_chan = chan;
7}
8
9X::~X()
10{
11        delete m_chan;
12}
13
14Channel *X::getChannel()
15{
16        return m_chan;
17}
Note: See TracBrowser for help on using the repository browser.