18db0cb9c9
- aggiunta funzione per gestione info e posizione assi in simulazione - aggiunta gestione callback per output testi.
30 lines
985 B
C++
30 lines
985 B
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2015
|
|
//----------------------------------------------------------------------------
|
|
// File : EXE.h Data : 05.05.15 Versione : 1.6e2
|
|
// Contenuto : Dichiarazioni locali per moduli EXE.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 01.09.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "GseContext.h"
|
|
#include "/EgtDev/Include/EgtILogger.h"
|
|
|
|
//----------------------------------------------------------------------------
|
|
ILogger* GetLogger( void) ;
|
|
ILogger* GetCmdLogger( void) ;
|
|
bool SetCmdLog( bool bVal) ;
|
|
bool IsCmdLog( void) ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
int ProcessEvents( int nProg, int nPause) ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
bool OutText( const std::string& sText) ;
|