Browse CVS Repository
Contents of /tombo/Tombo/CppUnitTestApp/CppUnitTestAppDlg.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
( as text)
Sat Sep 17 15:44:32 2005 UTC
(18 years, 6 months ago)
by hirami
Branch: MAIN
CVS Tags: Tombo_1_15, Tombo_1_17, Tombo_1_16, Tombo_2_0a3, B187, B186, Tombo_1_17_1, B189, B208, B213, B212, B211, B217, B216, B215, B214, B231, B230, B219, B218, SNAPSHOT20051220, B206, B207, B188, Tombo_2_0b2, Tombo_2_0b3, Tombo_2_0b1, Tombo_2_0b4, B191, B192, B193, B194, B196, B197, B198, B199, B200, B201, B202, B203, B205, B228, B229, B226, B227, B224, B225, B222, B223, B220, B221, HEAD
Branch point for: Tombo_1_17_1_branch
Changes since 1.1: +49 -0 lines
File MIME type: text/x-chdr
- removing g_Property.TopDir() dependency still.
- add unittest proj
- implement URIScanner class but not integrated yet.
| 1 |
// CppUnitTestAppDlg.h : header file |
| 2 |
// |
| 3 |
|
| 4 |
#if !defined(AFX_CPPUNITTESTAPPDLG_H__25E1CF20_72A4_4E25_B930_626DF60AD4C7__INCLUDED_) |
| 5 |
#define AFX_CPPUNITTESTAPPDLG_H__25E1CF20_72A4_4E25_B930_626DF60AD4C7__INCLUDED_ |
| 6 |
|
| 7 |
#if _MSC_VER > 1000 |
| 8 |
#pragma once |
| 9 |
#endif // _MSC_VER > 1000 |
| 10 |
|
| 11 |
///////////////////////////////////////////////////////////////////////////// |
| 12 |
// CppUnitTestAppDlg dialog |
| 13 |
|
| 14 |
class CppUnitTestAppDlg : public CDialog |
| 15 |
{ |
| 16 |
// Construction |
| 17 |
public: |
| 18 |
CppUnitTestAppDlg(CWnd* pParent = NULL); // standard constructor |
| 19 |
|
| 20 |
// Dialog Data |
| 21 |
//{{AFX_DATA(CppUnitTestAppDlg) |
| 22 |
enum { IDD = IDD_CPPUNITTESTAPP_DIALOG }; |
| 23 |
// NOTE: the ClassWizard will add data members here |
| 24 |
//}}AFX_DATA |
| 25 |
|
| 26 |
// ClassWizard generated virtual function overrides |
| 27 |
//{{AFX_VIRTUAL(CppUnitTestAppDlg) |
| 28 |
protected: |
| 29 |
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support |
| 30 |
//}}AFX_VIRTUAL |
| 31 |
|
| 32 |
// Implementation |
| 33 |
protected: |
| 34 |
HICON m_hIcon; |
| 35 |
|
| 36 |
// Generated message map functions |
| 37 |
//{{AFX_MSG(CppUnitTestAppDlg) |
| 38 |
virtual BOOL OnInitDialog(); |
| 39 |
afx_msg void OnSysCommand(UINT nID, LPARAM lParam); |
| 40 |
afx_msg void OnPaint(); |
| 41 |
afx_msg HCURSOR OnQueryDragIcon(); |
| 42 |
//}}AFX_MSG |
| 43 |
DECLARE_MESSAGE_MAP() |
| 44 |
}; |
| 45 |
|
| 46 |
//{{AFX_INSERT_LOCATION}} |
| 47 |
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. |
| 48 |
|
| 49 |
#endif // !defined(AFX_CPPUNITTESTAPPDLG_H__25E1CF20_72A4_4E25_B930_626DF60AD4C7__INCLUDED_) |
| |