//---------------------------------------------------------------------------- // EgalTech 2020-2020 //---------------------------------------------------------------------------- // File : ImportBtlx.cpp Data : 14.12.20 Versione : 2.2l1 // Contenuto : Implementazione della classe per l'importazione BTLx. // // // // Modifiche : 14.12.20 DS Creazione modulo. // // //---------------------------------------------------------------------------- //--------------------------- Include ---------------------------------------- #include "stdafx.h" #include "ImportBtlx.h" #include "DllMain.h" #include "/EgtDev/Include/EExDllMain.h" #include "/EgtDev/Include/EgtKeyCodes.h" using namespace std ; //---------------------------------------------------------------------------- IImportBtlx* CreateImportBtlx( void) { // verifico la chiave e le opzioni if ( ! TestKeyForEEx( GetEExKey(), KEYOPT_EEX_INPADV, GetEExLogger())) return nullptr ; // creo l'oggetto return static_cast ( new(nothrow) ImportBtlx) ; } //---------------------------------------------------------------------------- ImportBtlx::ImportBtlx( void) { } //---------------------------------------------------------------------------- bool ImportBtlx::Import( const string& sFile, IGeomDB* pGDB, int nFlag) { // log di informazioni LOG_INFO( GetEExLogger(), ( "ImportBtlx : " + sFile).c_str()) return false ; }