-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWorkspace.h
More file actions
32 lines (24 loc) · 807 Bytes
/
MainWorkspace.h
File metadata and controls
32 lines (24 loc) · 807 Bytes
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
// MainWorkspace.h: interface for the CMainWorkspace class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MAINWORKSPACE_H__8DF204D3_2F7A_41B4_BD50_30DCAC1EE5A5__INCLUDED_)
#define AFX_MAINWORKSPACE_H__8DF204D3_2F7A_41B4_BD50_30DCAC1EE5A5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "FlexGUIWorkspace.h"
class CMainWorkspace : public CFlexGUIWorkspace
{
public:
CMainWorkspace();
void BuildInterface();
virtual ~CMainWorkspace();
private:
CBenchmarkSettingsDlg m_settingsDlg;
CCPUInfoItemDlg m_cpuDlg;
COSInfoItemDlg m_osDlg;
//items
CDialogBasedItem i,i2,i3;
CBenchmarkResultItem i4;
};
#endif // !defined(AFX_MAINWORKSPACE_H__8DF204D3_2F7A_41B4_BD50_30DCAC1EE5A5__INCLUDED_)