mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-19 02:31:25 +00:00
18 lines
244 B
C++
18 lines
244 B
C++
|
#ifndef __buffer_hpp__
|
||
|
#define __buffer_hpp__
|
||
|
|
||
|
class Buffer {
|
||
|
public:
|
||
|
typedef enum { TYPE_PCM, TYPE_MIDI } Type;
|
||
|
|
||
|
private:
|
||
|
protected:
|
||
|
public:
|
||
|
Buffer() { }
|
||
|
virtual ~Buffer() { }
|
||
|
|
||
|
virtual Type GetType() const = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|