Files
EgtExchange/ExcExecutor.h
T
Dario Sassi 1ec34dc4e1 EgtExchange 1.5d4 :
- aggiunta importazione DXF.
2014-04-21 21:58:16 +00:00

46 lines
1.5 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 ExecuteImportStl( const std::string& sCmd2, const STRVECTOR& vsParams) ;
bool ExecuteImportDxf( const std::string& sCmd2, const STRVECTOR& vsParams) ;
private :
IGeomDB* m_pGDB ;
ICmdParser* m_pParser ;
ExecManager<ExcExecutor> m_ExecMgr ;
} ;