Alphabetical Class Index   File Members   Compound Members   File List  

CHoopsApp.h
1 //
2 // Copyright (c) 2000 by Tech Soft 3D, LLC.
3 // The information contained herein is confidential and proprietary to
4 // Tech Soft 3D, LLC., and considered a trade secret as defined under
5 // civil and criminal statutes. Tech Soft 3D shall pursue its civil
6 // and criminal remedies in the event of unauthorized use or misappropriation
7 // of its trade secrets. Use of this information by anyone other than
8 // authorized employees of Tech Soft 3D, LLC. is granted only under a
9 // written non-disclosure agreement, expressly prescribing the scope and
10 // manner of such use.
11 //
12 // $Id: 9ec693c034dcd3cb0d50bf2fccf3e8087a63caea $
13 //
14 
15 // CHoopsApp.h : interface of the CHoopsApp class, derived from CWinApp
16 // Adds encapsulation of the main HOOPS database object
17 
18 #ifndef __AFXWIN_H__
19  #error include 'stdafx.h' before including this file for PCH
20 #endif
21 
22 #ifndef hoops_app
23 #define hoops_app
24 
25 //#include "resource.h"
26 #include "hc.h"
27 #include "HMFCGlobals.h"
28 
32 #define WM_DOREALIZE (WM_USER + 0)
33 
37 #define WMF 0
38 
42 #define EMF 1
43 
44 
45 class HDB;
46 class CTDriver;
47 
49 // CHoopsApp:
50 // See hoops.cpp for the implementation of this class
51 //
52 
54 
59 class HMFC_API CHoopsApp : public CWinApp
60 {
61 
62 protected:
63 
67 
68 public:
69 
70  CHoopsApp();
71 
72 
74  HDB* GetHoopsDB() { return m_pHoopsDB; }
75 
77  CTDriver* GetCTDriver() {return m_pCTDriver; }
78 
79 
80 // Overrides
81  // ClassWizard generated virtual function overrides
82  //{{AFX_VIRTUAL(CHoopsApp)
83  public:
84  virtual BOOL InitInstance();
85  virtual int ExitInstance();
86  //}}AFX_VIRTUAL
87 
88 // Implementation
89 
90  //{{AFX_MSG(CHoopsApp)
91  //}}AFX_MSG
92  DECLARE_MESSAGE_MAP()
93 };
94 
95 #endif
96 
97 
Definition: CTDriver.h:13
HDB * m_pHoopsDB
Definition: CHoopsApp.h:65
The CHoopsApp class provides a HOOPS-specific implementation of the CWinApp object.
Definition: CHoopsApp.h:59
CTDriver * GetCTDriver()
Definition: CHoopsApp.h:77
HDB * GetHoopsDB()
Definition: CHoopsApp.h:74
CTDriver * m_pCTDriver
Pointer to the CTDriver timer service class.
Definition: CHoopsApp.h:66