Blame view

src/ParamGetImpl/ConstantInterface/AMDAPlugin.cc 2.03 KB
93809512   Benjamin Renard   Implements ParamG...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 * AMDAPlugin.cc
 *
 *  Created on: Sep 18, 2018
 *      Author: AKKA
 */

//=============================================================================
// Include section
//=============================================================================

// Standard libraries include files
//-----------------------------------------------------------------------------
#include <iostream>

// Include oriented definitions 
//-----------------------------------------------------------------------------

// Module Kernel include files
//-----------------------------------------------------------------------------

#include "NodeCfg.hh"
#include "XMLParameterConfigurator.hh"
#include "ServicesServer.hh"
#include "ParameterManager.hh"
#include "PluginManager.hh"
#include "ParamGetConstant.hh"
#include "GetConstantNode.hh"

using namespace AMDA::Parameters;
using namespace AMDA::XMLParameterConfigurator;

// Other modules include files
//-----------------------------------------------------------------------------

//=============================================================================
// Library function
//=============================================================================

/**
 * Retrieve the Plugin version we're going to expect
 */
extern "C" const char* getPluginVersion() 
{
	return "(Version)";
}

/**
 * Tells us to register our functionality to an engine kernel
 */
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
51
extern "C" void registerPlugin(AMDA::Plugins::PluginManager & pm)
93809512   Benjamin Renard   Implements ParamG...
52
53
54
55
{
	ParamGetFactory fact = boost::factory<AMDA::ConstantInterface::ParamGetConstant*>();
	ServicesServer *servicesServer = ServicesServer::getInstance();
	servicesServer->addParamGetFactory("CONSTANT", fact);
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
56
                    servicesServer->linkParamGetWithPlugin("CONSTANT", pm.getCurrentPluginPath());
93809512   Benjamin Renard   Implements ParamG...
57
	XMLParameterConfigurator* lXMLConf =  dynamic_cast<XMLParameterConfigurator*>(servicesServer->getConfigurator().get());
93809512   Benjamin Renard   Implements ParamG...
58
59
60
61
62
63
	lXMLConf->addNodeParser("param/get/constant",AMDA::XMLConfigurator::NodeCfgSPtr(new AMDA::XMLParameterConfigurator::GetConstantNode));
}

extern "C" void unregisterPlugin()
{
}