forked from baycom/poc32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathset.h
executable file
·47 lines (39 loc) · 996 Bytes
/
set.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Set.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CSet
class CSet:public CPropertySheet
{
DECLARE_DYNAMIC (CSet)
// Construction
public:
CSet (UINT nIDCaption, CWnd * pParentWnd = NULL, UINT iSelectPage = 0);
CSet (LPCTSTR pszCaption, CWnd * pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
CDecoder m_dec;
CEncoder m_enc;
CHardware m_hw;
CStatistic m_st;
DWORD m_type;
int m_activepage;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CSet)
public:
virtual int DoModal ();
virtual BOOL DestroyWindow ();
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~ CSet ();
// Generated message map functions
protected:
//{{AFX_MSG(CSet)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP ()
};
/////////////////////////////////////////////////////////////////////////////