X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_Error.h;h=3093e7bc9ac20f73330e224af1021104ef8d2178;hb=36c012079cecd007cd09c9192f06fcba9d8982f6;hp=8423eb52e70dc6384304441724219a2045d2b067;hpb=7569b92a8570dab734c5336241457bec4f2cdb1c;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_Error.h b/src/SketchSolver/SketchSolver_Error.h index 8423eb52e..3093e7bc9 100644 --- a/src/SketchSolver/SketchSolver_Error.h +++ b/src/SketchSolver/SketchSolver_Error.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: SketchSolver_Error.h -// Created: 29 Mar 2015 -// Author: Artem ZHIDKOV +// 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 SketchSolver_Error_H_ #define SketchSolver_Error_H_ @@ -24,10 +38,18 @@ class SketchSolver_Error "To fix this, you can either undo your operation or remove a conflicting constraint."); return MY_ERROR_VALUE; } + /// Cyclic dependency of copied features with their originals + inline static const std::string& INFINITE_LOOP() + { + static const std::string MY_ERROR_VALUE( + "There is a circular reference between copied sketch entities and their originals. " + "To fix this, you can either undo your operation or remove wrong constraint."); + return MY_ERROR_VALUE; + } /// Constraints should use objects instead of features as attributes inline static const std::string& NEED_OBJECT_NOT_FEATURE() { - static const std::string + static const std::string MY_ERROR_VALUE("Constraint should be based on object instead of feature"); return MY_ERROR_VALUE; } @@ -67,11 +89,11 @@ class SketchSolver_Error static const std::string MY_ERROR_VALUE("Entity already fixed"); return MY_ERROR_VALUE; } - /// Tangency constraint has been built with wrong attributes + /// Tangency constraint has been built with wrong attributes /// (for example, line and arc have two coincident points) inline static const std::string& TANGENCY_FAILED() { - static const std::string + static const std::string MY_ERROR_VALUE("Unable to create tangency constraint on given attributes"); return MY_ERROR_VALUE; } @@ -81,6 +103,12 @@ class SketchSolver_Error static const std::string MY_ERROR_VALUE("Caution: SolveSpace crash! Constraints are wrong"); return MY_ERROR_VALUE; } + /// Constraint has wrong type + inline static const std::string& WRONG_CONSTRAINT_TYPE() + { + static const std::string MY_ERROR_VALUE("Unsupported type of constraint"); + return MY_ERROR_VALUE; + } }; #endif