Salome HOME
bos #19181: Result appears when creating a parameter in the sketch
[modules/shaper.git] / src / ModuleBase / ModuleBase_SelectionValidator.h
index 60d9574001f12752d0e654da7b64755fc7c46c6d..a4c56317e76e7278e74f0406a082540389bc2049 100644 (file)
@@ -1,14 +1,28 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        ModuleBase_SelectionValidator.h
-// Created:     8 Jul 2014
-// Author:      Vitaly SMETANNIKOV
+// 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
+//
 
 #ifndef ModuleBase_SelectionValidator_H
 #define ModuleBase_SelectionValidator_H
 
 #include "ModuleBase.h"
 #include "ModuleBase_ISelection.h"
+#include "ModuleBase_Operation.h"
 
 #include <ModelAPI_Validator.h>
 
 * \ingroup Validators
 * A validator of selection
 */
-class ModuleBase_SelectionValidator : public ModelAPI_Validator
+class MODULEBASE_EXPORT ModuleBase_SelectionValidator : public ModelAPI_Validator
 {
- public:
-   /// Returns True if selection is valid
-   /// \param theSelection selection instance
-   /// \param theArguments list of arguments
-  virtual MODULEBASE_EXPORT bool isValid(const ModuleBase_ISelection* theSelection,
-                       const std::list<std::string>& theArguments) const;
-
- protected:
+public:
    /// Returns True if selection is valid
    /// \param theSelection selection instance
-  virtual bool isValid(const ModuleBase_ISelection* theSelection) const = 0;
+   /// \param theOperation - current operation (can be 0)
+  virtual bool isValid(const ModuleBase_ISelection* theSelection,
+                       ModuleBase_Operation* theOperation) const;
 };
 
 #endif