Files
EgtExchange/ExcExecutor.h
T
Dario Sassi f8942da9bc EgtExchange 1.5i4 :
- tolto controllo antidebug da release per VB.NET
- aggiunta importazione CNC e relatico comando TSC.
2014-09-18 14:58:12 +00:00

49 lines
1.7 KiB
C++

//----------------------------------------------------------------------------
// EgalTech 2013-2013
//----------------------------------------------------------------------------
// File : GraExecutor.h Data : 18.02.14 Versione : 1.5b3
// Contenuto : Dichiarazione della classe GraExecutor.
//
//
//
// Modifiche : 18.02.14 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include "/EgtDev/Include/EExExcExecutor.h"
#include "/EgtDev/Include/EgtExecMgr.h"
//----------------------------------------------------------------------------
class ExcExecutor : public IExcExecutor
{
public : // ICmdExecutor
virtual bool SetCmdParser( ICmdParser* pParser) ;
virtual bool AddStandardVariables( void)
{ return true ; }
virtual int Execute( const std::string& sCmd1, const std::string& sCmd2, const STRVECTOR& vsParams) ;
public : // IExcExecutor
~ExcExecutor( void) ;
virtual bool SetGeomDB( IGeomDB* pGdb) ;
public :
ExcExecutor( void) ;
private :
bool ExecuteExportDxf( const std::string& sCmd2, const STRVECTOR& vsParams) ;
bool ExecuteExportStl( const std::string& sCmd2, const STRVECTOR& vsParams) ;
bool ExecuteImportDxf( const std::string& sCmd2, const STRVECTOR& vsParams) ;
bool ExecuteImportCnc( const std::string& sCmd2, const STRVECTOR& vsParams) ;
bool ExecuteImportStl( const std::string& sCmd2, const STRVECTOR& vsParams) ;
private :
IGeomDB* m_pGDB ;
ICmdParser* m_pParser ;
ExecManager<ExcExecutor> m_ExecMgr ;
} ;