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