//---------------------------------------------------------------------------- // EgalTech 2013-2013 //---------------------------------------------------------------------------- // File : EgnCmdExecutor.h Data : 25.11.13 Versione : 1.3a1 // Contenuto : Dichiarazione della interfaccia ICmdExecutor. // // // // Modifiche : 25.11.13 DS Creazione modulo. // // //---------------------------------------------------------------------------- #pragma once #include "/EgtDev/Include/EgnStringBase.h" //---------------------------------------------------------------------------- class _declspec( novtable) ICmdExecutor { public : virtual bool Execute( const std::string& sCmd1, const std::string& sCmd2, const STRVECTOR& vsParams) = 0 ; } ;