1234567891011121314151617181920212223242526272829 |
- #ifndef APPVIEW_H
- #define APPVIEW_H
- #include <QtCore/QObject>
- #include "HBaseView.h"
- #include "HUtility.h"
- #include "ha_bridge.h"
- #include <assert.h>
- #include <math.h>
- #include "ha_bridge.h"
- class HSelectionSet;
- class AppView : public HBaseView
- {
- public:
- AppView(HBaseModel *model,
- const char * alias = 0,
- const char * driver_type = 0,
- const char * instance_name = 0,
- void * window_handle = 0,
- void * colormap = 0);
- virtual ~AppView();
- void Init();
- void DeleteSelectionList(bool emit_message=false);
- };
- #endif // APPVIEW_H
|