root/trunk/FileBuildPage.h

Revision 5, 1.5 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_FILEBUILDPAGE_H__A60555C4_EDD8_470A_ABA4_B7245C7B2843__INCLUDED_)
2 #define AFX_FILEBUILDPAGE_H__A60555C4_EDD8_470A_ABA4_B7245C7B2843__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // FileBuildPage.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CFileBuildPage dialog
12
13 class CFileBuildPage : public CRHGenericChildDialog
14 {
15 // Construction
16 public:
17     CFileBuildPage(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20     //{{AFX_DATA(CFileBuildPage)
21     enum { IDD = IDD_FILE_BUILD_OPTIONS1 };
22     BOOL    m_name;
23     BOOL    m_silent;
24     BOOL    m_full;
25     BOOL    m_allobj;
26     BOOL    m_link;
27     BOOL    m_test;
28     BOOL    m_nolink;
29     BOOL    m_dll;
30     BOOL    m_lib;
31     BOOL    m_gui;
32     BOOL    m_nolib;
33     BOOL    m_clean;
34     BOOL    m_obj;
35     BOOL    m_v;
36     CString m_X;
37     CString m_M;
38     //}}AFX_DATA
39
40     virtual int CRHGetDialogID() { return IDD; }
41   void Save () ;
42 // Overrides
43     // ClassWizard generated virtual function overrides
44     //{{AFX_VIRTUAL(CFileBuildPage)
45     protected:
46     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
47     //}}AFX_VIRTUAL
48
49 // Implementation
50 protected:
51
52     // Generated message map functions
53     //{{AFX_MSG(CFileBuildPage)
54         // NOTE: the ClassWizard will add member functions here
55     //}}AFX_MSG
56     DECLARE_MESSAGE_MAP()
57 };
58
59 //{{AFX_INSERT_LOCATION}}
60 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
61
62 #endif // !defined(AFX_FILEBUILDPAGE_H__A60555C4_EDD8_470A_ABA4_B7245C7B2843__INCLUDED_)
Note: See TracBrowser for help on using the browser.