Files
TestEGr/TestEGrUtils.cpp
T
Dario Sassi 859537bbf4 TestEGr 1.5b5 :
- aggiunto comando Nuovo
- aggiunta comando Esegui Tsc
2014-02-19 11:27:07 +00:00

40 lines
1.1 KiB
C++

//----------------------------------------------------------------------------
// EgalTech 2014-2014
//----------------------------------------------------------------------------
// File : TestEGrUtils.cpp Data : 17.02.14 Versione : 1.5b3
// Contenuto : Implementazione funzioni di utilità
//
//
//
// Modifiche : 17.02.14 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
//--------------------------- Include ----------------------------------------
#include "stdafx.h"
#include "TestEGrUtils.h"
#include "TestEGrDlg.h"
using namespace std ;
//----------------------------------------------------------------------------
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
//----------------------------------------------------------------------------
void
OutInfo( string& sOut, bool bLog)
{
((CTestEGrDlg*)AfxGetMainWnd())->OutInfo( sOut, bLog) ;
}
//----------------------------------------------------------------------------
bool
GetSceneInfo( string& sInfo)
{
return ((CTestEGrDlg*)AfxGetMainWnd())->GetSceneInfo( sInfo) ;
}