Salome HOME
Copyright update 2020
[modules/shaper.git] / src / ModuleBase / ModuleBase_OperationDescription.cpp
index a97d11816255062a457e60fcce1b6a5084d75d7f..a3bb79b2f6f7025dc9ed8b89a95c3f9da4a2cbdf 100644 (file)
@@ -1,15 +1,27 @@
-/*
- * ModuleBase_OperationDescription.cpp
- *
- *  Created on: Apr 2, 2014
- *      Author: sbh
- */
+// Copyright (C) 2014-2020  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #include <ModuleBase_OperationDescription.h>
 #include <QString>
 
 ModuleBase_OperationDescription::ModuleBase_OperationDescription(const QString& theId)
-: myOperationId(theId)
+    : myOperationId(theId)
 {
 }
 
@@ -32,22 +44,32 @@ void ModuleBase_OperationDescription::setDescription(const QString& theDescripti
   myDescription = theDescription;
 }
 
-void ModuleBase_OperationDescription::setModelWidgets(const std::string& theXmlRepresentation,
-                                                      const QList<ModuleBase_ModelWidget*>& theWidgets)
+/*void ModuleBase_OperationDescription::setModelWidgets(const std::string& theXmlRepresentation,
+ const QList<ModuleBase_ModelWidget*>& theWidgets)
+ {
+ myWidgets.clear();
+ QList<ModuleBase_ModelWidget*>::const_iterator anIt = theWidgets.begin(), aLast = theWidgets.end();
+ for (; anIt != aLast; anIt++)
+ myWidgets.push_back(*anIt);
+ myXmlRepresentation = theXmlRepresentation;
+ }*/
+
+/*const QList<ModuleBase_ModelWidget*>& ModuleBase_OperationDescription::modelWidgets() const
+ {
+ return myWidgets;
+ }*/
+
+const QString& ModuleBase_OperationDescription::xmlRepresentation() const
 {
-  myWidgets.clear();
-  QList<ModuleBase_ModelWidget*>::const_iterator anIt = theWidgets.begin(), aLast = theWidgets.end();
-  for (; anIt != aLast; anIt++)
-    myWidgets.push_back(*anIt);
-  myXmlRepresentation = theXmlRepresentation;
+  return myXmlRepresentation;
 }
 
-const QList<ModuleBase_ModelWidget*>& ModuleBase_OperationDescription::modelWidgets() const
+void ModuleBase_OperationDescription::setXmlRepresentation(const QString& theXMLRepresentation)
 {
-  return myWidgets;
+  myXmlRepresentation = theXMLRepresentation;
 }
 
 bool ModuleBase_OperationDescription::hasXmlRepresentation() const
 {
-  return !myWidgets.empty() || !myXmlRepresentation.empty();
+  return /*!myWidgets.empty() || */!myXmlRepresentation.isEmpty();
 }