mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-10 16:50:37 +05:00
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
|
|
#ifndef _GEOM_IOperations_HXX_
|
|
#define _GEOM_IOperations_HXX_
|
|
|
|
#include "GEOM_Engine.hxx"
|
|
#include <TDocStd_Document.hxx>
|
|
#include <TCollection_AsciiString.hxx>
|
|
#include "GEOM_Object.hxx"
|
|
#include "GEOM_Solver.hxx"
|
|
|
|
#define OK "PAL_NO_ERROR"
|
|
#define KO "PAL_NOT_DONE_ERROR"
|
|
#define ALREADY_PRESENT "PAL_ELEMENT_ALREADY_PRESENT"
|
|
#define NOT_EXISTS "PAL_ELEMENT_DOES_NOT_EXISTS"
|
|
#define INVALID_TYPE "INVALID_TYPE_OF_ELEMENT"
|
|
|
|
class GEOM_IOperations
|
|
{
|
|
public:
|
|
GEOM_IOperations(GEOM_Engine* theEngine, int theDocID);
|
|
~GEOM_IOperations();
|
|
|
|
//Starts a new operation (opens a tansaction)
|
|
void StartOperation();
|
|
|
|
//Finishes the previously started operation (closes the transaction)
|
|
void FinishOperation();
|
|
|
|
//Aborts the operation
|
|
void AbortOperation();
|
|
|
|
//Returns true if the last operation succided
|
|
bool IsDone();
|
|
|
|
//Sets Not done error code
|
|
void SetNotDone() { _errorCode = KO; }
|
|
|
|
//Sets an error code of the operation
|
|
void SetErrorCode(const TCollection_AsciiString& theErrorCode) {
|
|
_errorCode = theErrorCode;
|
|
}
|
|
|
|
//Returns an error code of the last operatioin
|
|
char* GetErrorCode() {
|
|
return _errorCode.ToCString();
|
|
}
|
|
|
|
//Returns a pointer to GEOM_Engine which this operation interface is associated
|
|
GEOM_Engine* GetEngine() { return _engine; }
|
|
|
|
//Return a pointer to Solver associated with this operation interface
|
|
GEOM_Solver* GetSolver() { return _solver; }
|
|
|
|
//Returns an ID of the OCAF document where this operation stores the data
|
|
int GetDocID() { return _docID; }
|
|
|
|
private:
|
|
|
|
TCollection_AsciiString _errorCode;
|
|
GEOM_Engine* _engine;
|
|
GEOM_Solver* _solver;
|
|
int _docID;
|
|
|
|
};
|
|
|
|
#endif
|