-
Notifications
You must be signed in to change notification settings - Fork 0
/
Modeler1.h
53 lines (41 loc) · 1.34 KB
/
Modeler1.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
48
49
50
51
52
53
// This MFC Samples source code demonstrates using MFC Microsoft Office Fluent User Interface
// (the "Fluent UI") and is provided only as referential material to supplement the
// Microsoft Foundation Classes Reference and related electronic documentation
// included with the MFC C++ library software.
// License terms to copy, use or distribute the Fluent UI are available separately.
// To learn more about our Fluent UI licensing program, please visit
// http://msdn.microsoft.com/officeui.
//
// Copyright (C) Microsoft Corporation
// All rights reserved.
// Modeler1.h : main header file for the Modeler1 application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
// CModeler1App:
// See Modeler1.cpp for the implementation of this class
//
class CModeler1App : public CWinAppEx
{
public:
CModeler1App();
private:
HINSTANCE m_hSciDLL;
// Overrides
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
// Implementation
CMultiDocTemplate* m_pDocTemplate;
UINT m_nAppLook;
BOOL m_bHiColorIcons;
virtual void PreLoadState();
virtual void LoadCustomState();
virtual void SaveCustomState();
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CModeler1App theApp;