-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSmartSteelPropertyPage.cpp
More file actions
76 lines (61 loc) · 2.02 KB
/
Copy pathSmartSteelPropertyPage.cpp
File metadata and controls
76 lines (61 loc) · 2.02 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// SmartSteelPropertyPage.cpp : implementation file
//
#include "stdafx.h"
#include "SmartSteelPropertyPage.h"
using namespace PropertyPage;
// CSmartSteelPropertyPage dialog
IMPLEMENT_DYNAMIC(CSmartSteelPropertyPage, CDialog)
CSmartSteelPropertyPage::CSmartSteelPropertyPage(UINT nIDTempalte , CWnd* pParent /*=NULL*/)
: CDialog(nIDTempalte , pParent)
{
}
CSmartSteelPropertyPage::~CSmartSteelPropertyPage()
{
}
void CSmartSteelPropertyPage::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CSmartSteelPropertyPage, CDialog)
END_MESSAGE_MAP()
// CSmartSteelPropertyPage message handlers
/******************************************************************************
@author humkyung
@date 2013-08-15
@class CSmartSteelPropertyPage
@function Create
@return BOOL
@param LPCTSTR pIniFilePath
@param UINT nIDTemplate
@param CWnd* pParentWnd
@brief
******************************************************************************/
BOOL CSmartSteelPropertyPage::Create(LPCTSTR pIniFilePath , UINT nIDTemplate , CWnd* pParentWnd)
{
m_sIniFilePath = pIniFilePath;
return CDialog::Create(nIDTemplate , pParentWnd);
}
/******************************************************************************
@author humkyung
@date 2013-08-15
@function CSmartSteelPropertyPage::SaveData
@return int
@param LPCTSTR sSettingFilePath
@brief
******************************************************************************/
int PropertyPage::CSmartSteelPropertyPage::SaveData()
{
return ERROR_SUCCESS;
}
/******************************************************************************
@author humkyung
@date 2013-08-15
@function CSmartSteelPropertyPage::LoadData
@return int
@param LPCTSTR sSettingFilePath
@brief
******************************************************************************/
int PropertyPage::CSmartSteelPropertyPage::LoadData()
{
return ERROR_SUCCESS;
}