]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Model/Model_Session.h
Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / Model / Model_Session.h
index 09a79a3d2976850b69ab5656142187ba3bbb9e95..2afa84a26b292305e6aa4c143f7bd792028cf110 100644 (file)
@@ -26,13 +26,13 @@ class Model_Session : public ModelAPI_Session, public Events_Listener
 {
   bool myPluginsInfoLoaded;  ///< it true if plugins information is loaded
   /// map of feature IDs to plugin name and document kind
-  std::map<std::string, std::pair<std::string, std::string> > myPlugins; 
+  std::map<std::string, std::pair<std::string, std::string> > myPlugins;
   std::map<std::string, ModelAPI_Plugin*> myPluginObjs;  ///< instances of the already plugins
   std::string myCurrentPluginName;  ///< name of the plugin that must be loaded currently
   std::shared_ptr<ModelAPI_Document> myCurrentDoc;  ///< current working document
-  
+
   /// if true, generates error if document is updated outside of transaction
-  bool myCheckTransactions; 
+  bool myCheckTransactions;
   bool myOperationAttachedToNext; ///< the current operation must be committed twice, with nested
  public:
 
@@ -52,14 +52,14 @@ class Model_Session : public ModelAPI_Session, public Events_Listener
 
   //! 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 
+  //! \param theAttachedToNested if it is true,
+  //!                            it means that this transaction is attached to 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)
   MODEL_EXPORT virtual void finishOperation();
-  //! Aborts the operation 
+  //! Aborts the operation
   MODEL_EXPORT virtual void abortOperation();
   //! Returns true if operation has been started, but not yet finished or aborted
   MODEL_EXPORT virtual bool isOperation();
@@ -102,7 +102,7 @@ class Model_Session : public ModelAPI_Session, public Events_Listener
   MODEL_EXPORT virtual bool isLoadByDemand(const std::string theDocID);
 
   /// Registers the plugin that creates features.
-  /// It is obligatory for each plugin to call this function on loading to be found by 
+  /// It is obligatory for each plugin to call this function on loading to be found by
   /// the plugin manager on call of the feature)
   MODEL_EXPORT virtual void registerPlugin(ModelAPI_Plugin* thePlugin);