X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_Session.h;h=1e200f40e0bc03836bfa608b8b98b891ff529a65;hb=a83e22046c5fb877969fa8879e42491d4054f198;hp=df9a63a579fdb251f224a55afd714286758c3aff;hpb=abc04a43de67947a851486f8173e2a86bdd4c376;p=modules%2Fshaper.git diff --git a/src/Model/Model_Session.h b/src/Model/Model_Session.h index df9a63a57..1e200f40e 100644 --- a/src/Model/Model_Session.h +++ b/src/Model/Model_Session.h @@ -31,7 +31,7 @@ class Model_Session : public ModelAPI_Session, public Events_Listener std::string myCurrentPluginName; ///< name of the plugin that must be loaded currently std::shared_ptr myCurrentDoc; ///< current working document bool myCheckTransactions; ///< if true, generates error if document is updated outside of transaction - bool myOperationAttachedToNext; ///< the current operation must be commited twice, with nested + bool myOperationAttachedToNext; ///< the current operation must be committed twice, with nested public: //! Loads the OCAF document from the file. @@ -48,9 +48,10 @@ class Model_Session : public ModelAPI_Session, public Events_Listener //! Closes all documents MODEL_EXPORT virtual void closeAll(); - //! Starts a new operation (opens a tansaction) + //! Starts a new operation (opens a transaction) + //! \param theId string-identifier of the started transaction //! \param theAttachedToNested if it is true, it means that this transaction is attached to the nested - //! where it is located and will be commited on the next commit with the nested + //! where it is located and will be committed on the next commit with the nested MODEL_EXPORT virtual void startOperation( const std::string& theId = "", const bool theAttachedToNested = false); //! Finishes the previously started operation (closes the transaction) @@ -105,7 +106,7 @@ class Model_Session : public ModelAPI_Session, public Events_Listener /// Processes the configuration file reading MODEL_EXPORT virtual void processEvent(const std::shared_ptr& theMessage); - /// Copies the document to the new one wit hthe given id + /// Copies the document to the new one with the given id MODEL_EXPORT virtual std::shared_ptr copy( std::shared_ptr theSource, std::string theID);