37 lines
979 B
C++
37 lines
979 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2013-2014
|
|
//----------------------------------------------------------------------------
|
|
// File : TestEGr.h Data : 02.02.14 Versione : 1.5b1
|
|
// Contenuto : Dichiarazione della classe applicazione test grafica.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 02.02.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error "include 'stdafx.h' before including this file for PCH"
|
|
#endif
|
|
|
|
#include <string>
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
class CTestEGrApp : public CWinApp
|
|
{
|
|
public :
|
|
CTestEGrApp( void) ;
|
|
|
|
public :
|
|
virtual BOOL InitInstance( void) ;
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
} ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
std::string GetExeNameVer( void) ;
|