]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #434 Fix for equal cnstraint problem under Debian linux
authorsbh <sergey.belash@opencascade.com>
Mon, 6 Apr 2015 07:37:08 +0000 (10:37 +0300)
committersbh <sergey.belash@opencascade.com>
Mon, 6 Apr 2015 07:37:08 +0000 (10:37 +0300)
src/ModelAPI/CMakeLists.txt
src/ModelAPI/ModelAPI_AttributeValidator.cpp [new file with mode: 0644]
src/ModelAPI/ModelAPI_AttributeValidator.h

index d20cb1d0577efcce3100ed7fca8f90172b2c6b96..27df7d5652434ab9fd45e260ccbaec56cd29b51d 100644 (file)
@@ -68,6 +68,7 @@ SET(PROJECT_SOURCES
     ModelAPI_Session.cpp
     ModelAPI_ShapeValidator.cpp
     ModelAPI_Tools.cpp
+    ModelAPI_AttributeValidator.cpp
 )
 
 SET(PROJECT_LIBRARIES
diff --git a/src/ModelAPI/ModelAPI_AttributeValidator.cpp b/src/ModelAPI/ModelAPI_AttributeValidator.cpp
new file mode 100644 (file)
index 0000000..12c9de0
--- /dev/null
@@ -0,0 +1,12 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
+// File:        ModelAPI_AttributeValidator.cpp
+// Created:     4 Sep 2014
+// Author:      Mikhail PONIKAROV
+
+#include <ModelAPI_AttributeValidator.h>
+
+ModelAPI_AttributeValidator::~ModelAPI_AttributeValidator()
+{
+
+}
index f059b9c659d4571ff5f03ed0b061bdd81c1a87a4..1abe1541af1335a027e8276548f00188b86e312c 100644 (file)
@@ -21,6 +21,8 @@ public:
   //! \param theArguments arguments of the attribute
   virtual bool isValid(const AttributePtr& theAttribute,
                        const std::list<std::string>& theArguments) const = 0;
+
+  ~ModelAPI_AttributeValidator();
 };
 
 #endif