blob: 73ac11d701f198146818c902efe236b9956c1a30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _PAPI_H
#define _PAPI_H
class ComponentAPI;
class WaComponent;
namespace PAPI {
ComponentAPI *createAPI(WaComponent *, GUID owner, GUID*config=NULL);
void destroyAPI(ComponentAPI *);
};
#endif
|