main.h 744 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef NULLSOFT_WAC_NETWORK_MAIN_H
  2. #define NULLSOFT_WAC_NETWORK_MAIN_H
  3. #include <QtCore>
  4. #include "wac_network_global.h"
  5. #include "api__wac_network.h"
  6. //#include "ServiceBuild.h"
  7. #include "../Agave/Component/ifc_wa5component.h"
  8. namespace wa
  9. {
  10. namespace Components
  11. {
  12. class WAC_Network : public ifc_wa5component
  13. {
  14. public:
  15. WAC_Network() {}
  16. void RegisterServices( api_service *service );
  17. int RegisterServicesSafeModeOk() { return 1; }
  18. void DeregisterServices( api_service *service );
  19. protected:
  20. RECVS_DISPATCH;
  21. };
  22. }
  23. }
  24. #endif // !NULLSOFT_WAC_NETWORK_MAIN_H