raze-gles/polymer/jfaud/inc/buffer.hpp
terminx 7b0104e9a1 JFAud
git-svn-id: https://svn.eduke32.com/eduke32@452 1a8010ca-5511-0410-912e-c29ae57300e0
2007-01-12 22:42:19 +00:00

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