BMA Server Framework
/home/barant/Documents/Development/BMASockets/BMAStreamFrame.h
1 #ifndef __BMAStreamFrame_h__
2 #define __BMAStreamFrame_h__
3 
5 
6  public:
7  BMAStreamFrame(char *streamData);
8 
9  virtual double getDuration() = 0;
10  virtual int getFrameSize() = 0;
11 
12  char *streamData;
13  bool lastFrame;
14 
15 };
16 
17 #endif
Definition: BMAStreamFrame.h:4