Include :

- aggiornamenti.
This commit is contained in:
Dario Sassi
2015-03-31 13:17:20 +00:00
parent b5b6c20ebc
commit 361480e3e7
2 changed files with 18 additions and 1 deletions
+7
View File
@@ -370,7 +370,14 @@ EIN_EXPORT BOOL __stdcall EgtShearGroup( int nId, const double vPnt[3], const do
// Machining
EIN_EXPORT BOOL __stdcall EgtInitMachMgr( void) ;
EIN_EXPORT int __stdcall EgtGetMachGroupNbr( void) ;
EIN_EXPORT int __stdcall EgtAddMachGroup( const wchar_t* wsName, const wchar_t* wsMachineName) ;
EIN_EXPORT BOOL __stdcall EgtRemoveMachGroup( int nMGroupInd) ;
EIN_EXPORT BOOL __stdcall EgtGetMachGroupName( int nMGroupInd, wchar_t*& wsName) ;
EIN_EXPORT BOOL __stdcall EgtGetMachGroupInd( const wchar_t* wsName, int* pnInd) ;
EIN_EXPORT BOOL __stdcall EgtSetCurrMachGroup( int nMGroupInd) ;
EIN_EXPORT BOOL __stdcall EgtResetCurrMachGroup( void) ;
EIN_EXPORT BOOL __stdcall EgtGetCurrMachGroup( int* pnInd) ;
// Scene
EIN_EXPORT BOOL __stdcall EgtInitScene( HWND hWnd, int nDriver, int b2Buff, int nColorBits, int nDepthBits) ;
+11 -1
View File
@@ -29,7 +29,17 @@ class __declspec( novtable) IMachMgr
public :
virtual ~IMachMgr( void) {}
virtual bool Init( IGeomDB* pGeomDB) = 0 ;
virtual int AddMachGroup( const std::string& sName, const std::string& sMachineName) = 0 ;
virtual bool Update( void) = 0 ;
virtual bool Insert( int nInsGrp) = 0 ;
virtual int GetMachGroupNbr( void) const = 0 ;
virtual bool GetMachGroupNewName( std::string& sName) const = 0 ;
virtual int AddMachGroup( const std::string& sName, const std::string& sMachineName) = 0 ;
virtual bool RemoveMachGroup( int nMGroup) = 0 ;
virtual bool GetMachGroupName( int nMGroup, std::string& sName) const = 0 ;
virtual bool GetMachGroupInd( const std::string& sName, int& nMGroup) const = 0 ;
virtual bool SetCurrMachGroup( int nMGroup) = 0 ;
virtual bool ResetCurrMachGroup( void) = 0 ;
virtual bool GetCurrMachGroup( int& nMGroup) const ;
} ;
//-----------------------------------------------------------------------------