Salome HOME
Fillet multiselection
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_Plugin.cpp
index cf32016859c4088cd15224867e8eddfc2122478b..e731309c3896018630dde2abe962449582cdc9e5 100644 (file)
@@ -1,11 +1,12 @@
 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 
-/*
- *
- */
+// File:    ExchangePlugin_Plugin.cpp
+// Created: Aug 28, 2014
+// Author:  Sergey BELASH
 
 #include <ExchangePlugin_Plugin.h>
 #include <ExchangePlugin_ImportFeature.h>
+#include <ExchangePlugin_ExportFeature.h>
 #include <ExchangePlugin_Validators.h>
 
 #include <Config_PropManager.h>
@@ -28,16 +29,17 @@ ExchangePlugin_Plugin::ExchangePlugin_Plugin()
   ModelAPI_ValidatorsFactory* aFactory = aSession->validators();
   aFactory->registerValidator("ExchangePlugin_ImportFormat",
                               new ExchangePlugin_ImportFormatValidator);
-
-  // register construction properties
-  Config_PropManager::registerProp("Visualization", "import_feature_color", "Imported feature color",
-                                   Config_Prop::Color, IMPORTED_FEATURE_COLOR);
+  aFactory->registerValidator("ExchangePlugin_ExportFormat",
+                              new ExchangePlugin_ExportFormatValidator);
 }
 
 FeaturePtr ExchangePlugin_Plugin::createFeature(string theFeatureID)
 {
   if (theFeatureID == ExchangePlugin_ImportFeature::ID()) {
     return FeaturePtr(new ExchangePlugin_ImportFeature);
+  } else
+  if (theFeatureID == ExchangePlugin_ExportFeature::ID()) {
+    return FeaturePtr(new ExchangePlugin_ExportFeature);
   }
   // feature of such kind is not found
   return FeaturePtr();