appview.h 709 B

1234567891011121314151617181920212223242526272829
  1. #ifndef APPVIEW_H
  2. #define APPVIEW_H
  3. #include <QtCore/QObject>
  4. #include "HBaseView.h"
  5. #include "HUtility.h"
  6. #include "ha_bridge.h"
  7. #include <assert.h>
  8. #include <math.h>
  9. #include "ha_bridge.h"
  10. class HSelectionSet;
  11. class AppView : public HBaseView
  12. {
  13. public:
  14. AppView(HBaseModel *model,
  15. const char * alias = 0,
  16. const char * driver_type = 0,
  17. const char * instance_name = 0,
  18. void * window_handle = 0,
  19. void * colormap = 0);
  20. virtual ~AppView();
  21. void Init();
  22. void DeleteSelectionList(bool emit_message=false);
  23. };
  24. #endif // APPVIEW_H