X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_SelectionValidator.h;h=d522e4878908a42110e827d4228b0cc11d91dbe4;hb=827d67208d2bb221aebe9adb9ef4a4c914789136;hp=1dd38013969915e35045a4c2caa5412651f7f1e8;hpb=72ccabc2a906e229fe487dfeae61d38f921927d0;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_SelectionValidator.h b/src/ModuleBase/ModuleBase_SelectionValidator.h index 1dd380139..d522e4878 100644 --- a/src/ModuleBase/ModuleBase_SelectionValidator.h +++ b/src/ModuleBase/ModuleBase_SelectionValidator.h @@ -1,20 +1,47 @@ -// File: ModuleBase_SelectionValidator.h -// Created: 8 Jul 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2017 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 +#include +#include -class ModuleBase_SelectionValidator: public ModelAPI_Validator +/** +* \ingroup Validators +* A validator of selection +*/ +class MODULEBASE_EXPORT ModuleBase_SelectionValidator : public ModelAPI_Validator { public: - virtual bool isValid(const ModuleBase_ISelection* theSelection) const = 0; + /// Returns True if selection is valid + /// \param theSelection selection instance + /// \param theOperation - current operation (can be 0) + virtual bool isValid(const ModuleBase_ISelection* theSelection, + ModuleBase_Operation* theOperation) const; }; #endif