Include :

- aggiunti include per Exchange.
This commit is contained in:
Dario Sassi
2014-04-05 20:48:39 +00:00
parent 76d4d581f8
commit caa70b1751
2 changed files with 74 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
//----------------------------------------------------------------------------
// 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 ;
} ;
//----------------------------------------------------------------------------
EEX_EXPORT IExcExecutor* CreateExcExecutor( void) ;
+37
View File
@@ -0,0 +1,37 @@
//----------------------------------------------------------------------------
// EgalTech 2014-2014
//----------------------------------------------------------------------------
// File : EExImportStl.h Data : 04.04.14 Versione : 1.5d1
// Contenuto : Dichiarazione della interfaccia IImportStl.
//
//
//
// Modifiche : 04.04.14 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <string>
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) IImportStl
{
public :
virtual ~IImportStl( void) {}
virtual bool Import( const std::string& sFile, IGeomDB* pGDB, int nIdGroup) = 0 ;
} ;
//-----------------------------------------------------------------------------
EEX_EXPORT IImportStl* CreateImportStl( void) ;