Files
Include/EgnCmdExecutor.h
T
Dario Sassi 82b2fcf8ae Include :
- modifiche interfacce
- aggiunto manager esecutori.
2014-03-23 12:39:06 +00:00

28 lines
924 B
C++

//----------------------------------------------------------------------------
// EgalTech 2013-2014
//----------------------------------------------------------------------------
// File : EgnCmdExecutor.h Data : 21.03.14 Versione : 1.5c3
// Contenuto : Dichiarazione della interfaccia ICmdExecutor.
//
//
//
// Modifiche : 25.11.13 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include "/EgtDev/Include/EgnStringBase.h"
class ICmdParser ;
//----------------------------------------------------------------------------
class __declspec( novtable) ICmdExecutor
{
public :
virtual bool SetCmdParser( ICmdParser* pParser) = 0 ;
virtual bool AddStandardVariables( void) = 0 ;
virtual int Execute( const std::string& sCmd1, const std::string& sCmd2, const STRVECTOR& vsParams) = 0 ;
} ;