Salome HOME
Issue #2811: Update content of Object node on creation moment
[modules/shaper.git] / src / GeomValidators / GeomValidators_DifferentShapes.h
index 737a2f63d1b721973db52d322ac84575829774a1..f1d826cc4430c7c3ff78f23fc91caae369462439 100644 (file)
@@ -40,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