Salome HOME
bos #29469: Advanced geometry features: Detect type of shape
[modules/geom.git] / src / GEOMImpl / GEOMImpl_Gen.cxx
index 867f7b9eb2535c0b1799f076ccfe6ff9ec02d137..74aceaf120e9a8e3fb4310a0ce82db0c9857202a 100644 (file)
@@ -185,6 +185,7 @@ GEOMImpl_Gen::GEOMImpl_Gen()
    _GroupOperations = new GEOMImpl_IGroupOperations( this );
    _FieldOperations = new GEOMImpl_IFieldOperations( this );
    _TestOperations = new GEOMImpl_ITestOperations( this );
+   _CanonicalRecognition = new GEOMImpl_ICanonicalRecognition( this );
 }
 
 //=============================================================================
@@ -210,6 +211,7 @@ GEOMImpl_Gen::~GEOMImpl_Gen()
   delete _MeasureOperations;
   delete _GroupOperations;
   delete _FieldOperations;
+  delete _CanonicalRecognition;
 }
 
 //=============================================================================
@@ -351,3 +353,13 @@ GEOMImpl_ITestOperations* GEOMImpl_Gen::GetITestOperations()
 {
   return _TestOperations;
 }
+
+//=============================================================================
+/*!
+ * GetICanonicalRecognition
+ */
+//=============================================================================
+GEOMImpl_ICanonicalRecognition* GEOMImpl_Gen::GetICanonicalRecognition()
+{
+  return _CanonicalRecognition;
+}