source: trunk/MFCtooling/TestProg/TestProg.h @ 32

Last change on this file since 32 was 32, checked in by sherbold, 13 years ago
File size: 677 bytes
Line 
1// TestProg.h : main header file for the TestProg application
2//
3#pragma once
4
5#ifndef __AFXWIN_H__
6        #error "include 'stdafx.h' before including this file for PCH"
7#endif
8
9#include "resource.h"       // main symbols
10
11
12// CTestProgApp:
13// See TestProg.cpp for the implementation of this class
14//
15
16class CTestProgApp : public CWinApp
17{
18public:
19        CTestProgApp();
20private:
21        HINSTANCE hinstDll;
22
23// Overrides
24public:
25        virtual BOOL InitInstance();
26        virtual BOOL ExitInstance();
27
28// Implementation
29        COleTemplateServer m_server;
30                // Server object for document creation
31        afx_msg void OnAppAbout();
32        DECLARE_MESSAGE_MAP()
33};
34
35extern CTestProgApp theApp;
Note: See TracBrowser for help on using the repository browser.