source: proiecte/SIMEO/Simeo/src/SimeoEngine/Channel.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: 294 bytes
Line 
1#include "Channel.h"
2
3Channel::Channel()
4{
5}
6
7Channel::~Channel()
8{
9}
10
11int Channel::read(void *buf, channel_datatype_t datatype, size_t count)
12{
13        return 0;
14}
15
16int Channel::write(const void *buf, channel_datatype_t datatype, size_t count)
17{
18        return 0;
19}
20
21int Channel::available()
22{
23        return 0;
24}
Note: See TracBrowser for help on using the repository browser.