home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / pserv.cpl / pserv-2.4.exe / source / AdvancedPage.h < prev    next >
C/C++ Source or Header  |  2005-01-05  |  1KB  |  57 lines

  1. #if !defined(AFX_ADVANCEDPAGE_H__82C9BECF_4DA4_455D_BFA3_7A6ACC39D738__INCLUDED_)
  2. #define AFX_ADVANCEDPAGE_H__82C9BECF_4DA4_455D_BFA3_7A6ACC39D738__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // AdvancedPage.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CAdvancedPage dialog
  12.  
  13. class CService;
  14.  
  15. class CAdvancedPage : public CPropertyPage
  16. {
  17.     DECLARE_DYNCREATE(CAdvancedPage)
  18.  
  19. // Construction
  20. public:
  21.     CAdvancedPage();
  22.     ~CAdvancedPage();
  23.  
  24.     void SetService(CService* instance);
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CAdvancedPage)
  28.     enum { IDD = IDD_SERVICE_ADVANCED_PAGE };
  29.     CComboBox    m_cbLoadOrderGroups;
  30.     CComboBox   m_cbServiceType;
  31.     int        m_dwErrorControl;
  32.     //}}AFX_DATA
  33.  
  34.  
  35. // Overrides
  36.     // ClassWizard generate virtual function overrides
  37.     //{{AFX_VIRTUAL(CAdvancedPage)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. protected:
  44.     CService* m_pService;
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CAdvancedPage)
  47.         // NOTE: the ClassWizard will add member functions here
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50.  
  51. };
  52.  
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55.  
  56. #endif // !defined(AFX_ADVANCEDPAGE_H__82C9BECF_4DA4_455D_BFA3_7A6ACC39D738__INCLUDED_)
  57.