ab8ec30e29
- sistemato minuscole/maiuscole.
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
//----------------------------------------------------------------------------
|
|
// EgalTech 2014-2014
|
|
//----------------------------------------------------------------------------
|
|
// File : EExExcExecutor.h Data : 04.04.14 Versione : 1.5d1
|
|
// Contenuto : Dichiarazione della interfaccia IExcExecutor.
|
|
//
|
|
//
|
|
//
|
|
// Modifiche : 04.04.14 DS Creazione modulo.
|
|
//
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "/EgtDev/Include/EGnCmdExecutor.h"
|
|
|
|
class IGeomDB ;
|
|
|
|
//----------------------- Macro per import/export ----------------------------
|
|
#undef EEK_EXPORT
|
|
#if defined( I_AM_EEX) // da definirsi solo nella DLL
|
|
#define EEX_EXPORT __declspec( dllexport)
|
|
#else
|
|
#define EEX_EXPORT __declspec( dllimport)
|
|
#endif
|
|
|
|
//----------------------------------------------------------------------------
|
|
class __declspec( novtable) IExcExecutor : public ICmdExecutor
|
|
{
|
|
public :
|
|
virtual ~IExcExecutor( void) {}
|
|
virtual bool SetGeomDB( IGeomDB* pGdb) = 0 ;
|
|
} ;
|
|
|
|
//----------------------------------------------------------------------------
|
|
extern "C" {
|
|
EEX_EXPORT IExcExecutor* CreateExcExecutor(void) ;
|
|
} |