1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ExchangePlugin_Plugin.cpp
4 // Created: Aug 28, 2014
5 // Author: Sergey BELASH
7 #include <ExchangePlugin_Plugin.h>
8 #include <ExchangePlugin_ImportFeature.h>
9 #include <ExchangePlugin_ExportFeature.h>
10 #include <ExchangePlugin_Validators.h>
12 #include <Config_PropManager.h>
14 #include <ModelAPI_Session.h>
15 #include <ModelAPI_Validator.h>
21 // the only created instance of this plugin
22 static ExchangePlugin_Plugin* MY_EXCHANGE_INSTANCE = new ExchangePlugin_Plugin();
24 ExchangePlugin_Plugin::ExchangePlugin_Plugin()
26 // register this plugin
27 SessionPtr aSession = ModelAPI_Session::get();
28 aSession->registerPlugin(this);
29 ModelAPI_ValidatorsFactory* aFactory = aSession->validators();
30 aFactory->registerValidator("ExchangePlugin_ImportFormat",
31 new ExchangePlugin_ImportFormatValidator);
32 aFactory->registerValidator("ExchangePlugin_ExportFormat",
33 new ExchangePlugin_ExportFormatValidator);
36 FeaturePtr ExchangePlugin_Plugin::createFeature(string theFeatureID)
38 if (theFeatureID == ExchangePlugin_ImportFeature::ID()) {
39 return FeaturePtr(new ExchangePlugin_ImportFeature);
41 if (theFeatureID == ExchangePlugin_ExportFeature::ID()) {
42 return FeaturePtr(new ExchangePlugin_ExportFeature);
44 // feature of such kind is not found