home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / VFORM.ZIP / Samples / vfTest / vfTest.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-10-10  |  1.4 KB  |  54 lines

  1. // -------------------------------------------------------------------------
  2. // Copyright @ 1997 TCK Software, Incorporated
  3. // All Rights Reserved
  4. // -------------------------------------------------------------------------
  5. // vfTest.h : main header file for the VFTEST application
  6. //
  7.  
  8. #ifndef __AFXWIN_H__
  9.     #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11.  
  12. #include "resource.h"       // main symbols
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CVfTestApp:
  16. // See vfTest.cpp for the implementation of this class
  17. //
  18.  
  19. class CVfTestApp : public CWinApp
  20. {
  21. protected:
  22.     CMultiDocTemplate*    m_pMdtTest;        
  23.     CMultiDocTemplate*    m_pMdtPerson;    
  24.     CMultiDocTemplate*    m_pMdtMorph;    
  25.     CMultiDocTemplate*    m_pMdtVTree;
  26.     CMultiDocTemplate*    m_pMdtPicture;
  27.  
  28. public:
  29.     CVfTestApp();
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CVfTestApp)
  34.     public:
  35.     virtual BOOL InitInstance();
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39.  
  40.     //{{AFX_MSG(CVfTestApp)
  41.     afx_msg void OnAppAbout();
  42.     afx_msg void OnExamplesDialogexample();
  43.     afx_msg void OnExamplesTest();
  44.     afx_msg void OnExamplesPerson();
  45.     afx_msg void OnExamplesMorph();
  46.     afx_msg void OnExamplesTree();
  47.     afx_msg void OnExamplesPict();
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.