ifc_oggaudiodecoder.h 278 B

12345678910111213141516
  1. #pragma once
  2. #include "../replicant/foundation/dispatch.h"
  3. class ifc_oggaudiodecoder : public Wasabi2::Dispatchable
  4. {
  5. protected:
  6. ifc_oggaudiodecoder() : Dispatchable(DISPATCHABLE_VERSION) {}
  7. ~ifc_oggaudiodecoder() {}
  8. public:
  9. enum
  10. {
  11. DISPATCHABLE_VERSION,
  12. GET_BPS
  13. };
  14. };