caa70b1751
- aggiunti include per Exchange.
37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
//----------------------------------------------------------------------------
|
|
// 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) ; |