home *** CD-ROM | disk | FTP | other *** search
/ ActiveX Programming Unleashed CD / AXU.iso / componen / interact / demo / data.2 / samples / mfc / DBMODEL / DBMODEL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-20  |  684 b   |  33 lines

  1. // dbmodel.h : main header file for the DBMODEL application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDbmodelApp:
  12. // See dbmodel.cpp for the implementation of this class
  13. //
  14.  
  15. class CDbmodelApp : public CWinApp
  16. {
  17. public:
  18.     CDbmodelApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.  
  25.     //{{AFX_MSG(CDbmodelApp)
  26.     afx_msg void OnAppAbout();
  27.     //}}AFX_MSG
  28.     DECLARE_MESSAGE_MAP()
  29. };
  30.  
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33.