Salome HOME
Adapt help management to Linux Salome environment
[modules/shaper.git] / src / GeomValidators / GeomValidators_DifferentShapes.h
index a46556d4577648967b4555b48e726f7f73a2a438..f1d826cc4430c7c3ff78f23fc91caae369462439 100644 (file)
@@ -14,7 +14,8 @@
 // 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<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or
+// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
 //
 
 #ifndef GeomValidators_DifferentShapes_H
@@ -39,6 +40,16 @@ public:
   GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
                                              const std::list<std::string>& theArguments,
                                              Events_InfoMessage& theError) const;
+
+private:
+  /// Check if the list contains equal shape selection.
+  static bool checkEquals(std::list<AttributePtr>& theAttributes);
+  /// Check if the list contains shape selection equal to the given one.
+  static bool checkEqualToCurrent(std::list<AttributePtr>& theAttributes,
+                                  const AttributePtr& theCurrentAttribute);
+  /// Check if shapes corresponding to the attributes are equal.
+  static bool isAttrShapesEqual(const AttributePtr& theAttribute,
+                                const AttributePtr& theOtherAttribute);
 };
 
 #endif