mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-19 02:31:25 +00:00
7b0104e9a1
git-svn-id: https://svn.eduke32.com/eduke32@452 1a8010ca-5511-0410-912e-c29ae57300e0
17 lines
244 B
C++
Executable file
17 lines
244 B
C++
Executable file
#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
|