aboutsummaryrefslogtreecommitdiff
path: root/APEX_1.4/shared/general/RenderDebug/include/PsCommStream.h
blob: cfad18819638326abdb50246038a3df13b0f2695 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef PS_COMM_STREAM_H

#define PS_COMM_STREAM_H

#include "PsCommLayer.h"

class CommStream : public CommLayer
{
public:
	virtual bool isValid(void) const = 0;
	virtual CommLayer *getCommLayer(void) = 0;

protected:
	virtual ~CommStream(void)
	{

	}
};

CommStream *createCommStream(const char *streamFile,
							bool recordFile,
							CommLayer *c);

#endif