51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
/*=========================================================================
|
|
*
|
|
* GraphInter.h - main header file for the graphic interface
|
|
*
|
|
* Version 1.0
|
|
* Revision date
|
|
*
|
|
*=======================================================================*/
|
|
#ifndef __GRAPHINTER_H__
|
|
#define __GRAPHINTER_H__
|
|
|
|
|
|
//--- Includes --------------------------------------------------------
|
|
|
|
#include "Resource.h"
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
/*
|
|
=======================================================================================
|
|
CGraphInterApp class
|
|
=======================================================================================
|
|
*/
|
|
|
|
class CGraphInterApp : public CWinApp
|
|
{
|
|
public:
|
|
CGraphInterApp();
|
|
|
|
void fn_vChangeContextHelpFile (char *szNewName);
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CGraphInterApp)
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
|
|
//{{AFX_MSG(CGraphInterApp)
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
// DO NOT EDIT what you see in these blocks of generated code !
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
|
|
|
|
#endif //__GRAPHINTER_H__
|