main.h 556 B

1234567891011121314151617181920212223242526272829
  1. #ifndef NULLSOFT_WAC_BROWSER_MAIN_H
  2. #define NULLSOFT_WAC_BROWSER_MAIN_H
  3. #include "api__wac_browser.h"
  4. #include "../Agave/Component/ifc_wa5component.h"
  5. #include <QtWebView>
  6. #include <QUrl>
  7. namespace wa
  8. {
  9. namespace Components
  10. {
  11. class WAC_Browser : public ifc_wa5component
  12. {
  13. public:
  14. void RegisterServices( api_service *p_service );
  15. int RegisterServicesSafeModeOk() { return 1; }
  16. void DeregisterServices( api_service *p_service );
  17. protected:
  18. RECVS_DISPATCH;
  19. };
  20. }
  21. }
  22. #endif // !NULLSOFT_WAC_BROWSER_MAIN_H