blob: e65332e25a28506a643c947c9e44ece917c3a3da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef NULLSOFT_XSPF_XSPFHANDLERFACTORY_H
#define NULLSOFT_XSPF_XSPFHANDLERFACTORY_H
#include <api/service/waservicefactory.h>
class XSPFHandlerFactory : public waServiceFactory
{
public:
FOURCC GetServiceType();
const char *GetServiceName();
GUID GetGuid();
void *GetInterface(int global_lock = TRUE);
int ReleaseInterface(void *ifc);
protected:
RECVS_DISPATCH; // all Wasabi objects implementing a Dispatchable interface require this
};
#endif
|