ExComponent.h 391 B

12345678910111213141516
  1. #ifndef NULLSOFT_PLLOADEX_EXCOMPONENT_H
  2. #define NULLSOFT_PLLOADEX_EXCOMPONENT_H
  3. #include "../Agave/Component/ifc_wa5component.h"
  4. class ExComponent : public ifc_wa5component
  5. {
  6. public:
  7. void RegisterServices(api_service *service);
  8. void DeregisterServices(api_service *service);
  9. protected:
  10. RECVS_DISPATCH; // all Wasabi objects implementing a Dispatchable interface require this
  11. };
  12. #endif