123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef _SVCWNDHOLD_H
- #define _SVCWNDHOLD_H
- #include <api/wnd/wndclass/rootwndholder.h>
- #include <bfc/common.h>
- class svc_windowCreate;
- #define SERVICEWNDHOLDER_PARENT RootWndHolder
- class ServiceWndHolder : public SERVICEWNDHOLDER_PARENT {
- public:
-
- ServiceWndHolder(ifc_window *child=NULL, svc_windowCreate *svc=NULL);
-
-
- virtual ~ServiceWndHolder();
-
- int setChild(ifc_window *child, svc_windowCreate *svc);
- virtual ifc_window *rootwndholder_getRootWnd();
- private:
- ifc_window *child;
- svc_windowCreate *svc;
- };
- #endif
|