raze-gles/polymer/jfaud/inc/buffer.hpp

18 lines
244 B
C++
Raw Normal View History

#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