Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

Analysis.h
Go to the documentation of this file.
1 // Analysis.h : interface of the CAnalysisApp class, derived from CHoopsApp
2 // This is the main header for the application
3 
4 
5 #ifndef __AFXWIN_H__
6  #error include 'stdafx.h' before including this file for PCH
7 #endif
8 
9 #ifndef _CAnalysisApp_H__
10 #define _CAnalysisApp_H__
11 
12 #include "hc.h"
13 #include "CHoopsApp.h"
14 
15 
16 class HDB;
17 
18 
20 // CAnalysisApp:
21 // See CAnalysisApp.cpp for the implementation of this class
22 //
23 
24 class CAnalysisApp : public CHoopsApp
25 {
26 
27 protected:
28 
29 
30 
31 public:
32  CAnalysisApp();
33 
34 
35 
36 // Overrides
37  // ClassWizard generated virtual function overrides
38  //{{AFX_VIRTUAL(CAnalysisApp)
39  public:
40  virtual BOOL InitInstance();
41  virtual int ExitInstance();
42  //}}AFX_VIRTUAL
43 
44 // Implementation
45 
46  //{{AFX_MSG(CAnalysisApp)
47  afx_msg void OnAppAbout();
48  //}}AFX_MSG
49  DECLARE_MESSAGE_MAP()
50 };
51 
52 #endif // _CAnalysisApp_H__
virtual BOOL InitInstance()
virtual int ExitInstance()
afx_msg void OnAppAbout()
Definition: Analysis.h:24