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

  1. // -------------------------------------------------------------------------
  2. // Copyright @ 1997 TCK Software, Incorporated
  3. // All Rights Reserved
  4. // -------------------------------------------------------------------------
  5.  
  6. // VfHex.h : main header file for the VFHEX application
  7. //
  8.  
  9. #if !defined(AFX_VFHEX_H__ACB394BF_9D36_11D1_88FB_00A0C9050951__INCLUDED_)
  10. #define AFX_VFHEX_H__ACB394BF_9D36_11D1_88FB_00A0C9050951__INCLUDED_
  11.  
  12. #if _MSC_VER >= 1000
  13. #pragma once
  14. #endif // _MSC_VER >= 1000
  15.  
  16. #ifndef __AFXWIN_H__
  17.     #error include 'stdafx.h' before including this file for PCH
  18. #endif
  19.  
  20. #include "resource.h"       // main symbols
  21.  
  22. class CMainFrame;
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CVfHexApp:
  26. // See VfHex.cpp for the implementation of this class
  27. //
  28.  
  29. class CVfHexApp : public CWinApp
  30. {
  31. public:
  32.     CVfHexApp();
  33.  
  34.     CMainFrame*    GetMainFrame()    { return (CMainFrame *)m_pMainWnd; }
  35.     void        DoFileOpen()    { OnFileOpen(); }
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CVfHexApp)
  40.     public:
  41.     virtual BOOL InitInstance();
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45.  
  46.     //{{AFX_MSG(CVfHexApp)
  47.     afx_msg void OnAppAbout();
  48.         // NOTE - the ClassWizard will add and remove member functions here.
  49.         //    DO NOT EDIT what you see in these blocks of generated code !
  50.     //}}AFX_MSG
  51.     DECLARE_MESSAGE_MAP()
  52. };
  53.  
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.  
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59.  
  60. #endif // !defined(AFX_VFHEX_H__ACB394BF_9D36_11D1_88FB_00A0C9050951__INCLUDED_)
  61.