EgtInterface 1.6a4 :

- completamento modifiche per registrazione comandi in lua e per gestione RefType e RefId.
This commit is contained in:
Dario Sassi
2015-01-26 07:53:04 +00:00
parent 4e5a81c493
commit a45c3fca8a
25 changed files with 1574 additions and 1254 deletions
+6 -6
View File
@@ -36,7 +36,7 @@ __stdcall EgtGetFileType( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
int
__stdcall EgtGetFileType( const string& sFilePath)
EgtGetFileType( const string& sFilePath)
{
// divido in nome e direttorio
string sFileDir, sFileName ;
@@ -78,7 +78,7 @@ __stdcall EgtImportDxf( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtImportDxf( const string& sFilePath)
EgtImportDxf( const string& sFilePath)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -101,7 +101,7 @@ __stdcall EgtImportStl( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtImportStl( const string& sFilePath)
EgtImportStl( const string& sFilePath)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -125,7 +125,7 @@ __stdcall EgtImportCnc( const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtImportCnc( const string& sFilePath)
EgtImportCnc( const string& sFilePath)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -148,7 +148,7 @@ __stdcall EgtExportDxf( int nId, const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtExportDxf( int nId, const string& sFilePath)
EgtExportDxf( int nId, const string& sFilePath)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)
@@ -169,7 +169,7 @@ __stdcall EgtExportStl( int nId, const wchar_t* wsFilePath)
//-----------------------------------------------------------------------------
bool
__stdcall EgtExportStl( int nId, const string& sFilePath)
EgtExportStl( int nId, const string& sFilePath)
{
IGeomDB* pGeomDB = GetCurrGeomDB() ;
VERIFY_GEOMDB( pGeomDB, false)