Blame view

src/InternLib/AMDAPlugin.cc 3.42 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
/* -*- Base: 10 ; Mode: C++ -*- */
/*------------------------------------------------------------------------
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
3
4
5
 **	
                                FOST project
 **
fbe3c2bb   Benjamin Renard   First commit
6
7
--------------------------------------------------------------------------
--------------------------------------------------------------------------
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
8
9
                                FILE LOG
                $Revision: 1.3 $    $Date: 2012-06-15 13:04:42 $
fbe3c2bb   Benjamin Renard   First commit
10
11
--------------------------------------------------------------------------
CREATION
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
12
        V.SAC
fbe3c2bb   Benjamin Renard   First commit
13
14
15
16
17

SUMMARY

DESCRIPTION

bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
18
19
20
21
        The main function performs the following actions :
        <ul>
        <li>
        </ul>
fbe3c2bb   Benjamin Renard   First commit
22
23
24
25
26
27
28
29
30
31
32
33
34
35

------------------------------------------------------------------------*/

//=============================================================================
// 
// History of code
//
// creation 
//
// modification 
//=============================================================================

/**

bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
36
 */
fbe3c2bb   Benjamin Renard   First commit
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//=============================================================================
// Include section
//=============================================================================

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

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

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

#include "Resampling.hh"
#include "ServicesServer.hh"
#include "PluginManager.hh"
#include "ProcessStandard.hh"
#include "ProcessSamplingClassic.hh"
#include "ProcessSamplingUnderRefParam.hh"
91edc9c0   Benjamin Renard   Add process to tr...
57
#include "ParamTableProcess.hh"
fbe3c2bb   Benjamin Renard   First commit
58
59
60
61
62
63
64
65
66
67

using namespace AMDA::Parameters;

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

//=============================================================================
// Methods of Class AMDAPlugin
//=============================================================================

fbe3c2bb   Benjamin Renard   First commit
68
69
/**
   Retrieve the Plugin version we're going to expect
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
70
71
72
 */
extern "C" const char* getPluginVersion() {
    return "(Version)";
fbe3c2bb   Benjamin Renard   First commit
73
74
75
76
}

/**
   Tells us to register our functionality to an engine kernel
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
77
 */
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
78
79
extern "C" void registerPlugin(AMDA::Plugins::PluginManager& pm) {
    std::string pluginPath =  pm.getCurrentPluginPath();
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
80
81
82
    ProcessFactory factProcessStandard = boost::factory<ProcessStandard*>();
    ProcessFactory factProcessSamplingClassic = boost::factory<ProcessSamplingClassic*>();
    ProcessFactory factProcessSamplingUnderRefParam = boost::factory<ProcessSamplingUnderRefParam*>();
91edc9c0   Benjamin Renard   Add process to tr...
83
    ProcessFactory factParamTableProcess = boost::factory<ParamTableProcess*>();
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
84
85

    ServicesServer::getInstance()->addProcessFactory("standard", factProcessStandard);
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
86
    ServicesServer::getInstance()->linkProcessWithPlugin("standard", pluginPath);
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
87
88

    ServicesServer::getInstance()->addProcessFactory("sampling_classic", factProcessSamplingClassic);
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
89
    ServicesServer::getInstance()->linkProcessWithPlugin("sampling_classic", pluginPath);
bf54b7d4   Hacene SI HADJ MOHAND   not woring yet
90
91

    ServicesServer::getInstance()->addProcessFactory("sampling_under_refparam", factProcessSamplingUnderRefParam);
3caf58ee   Hacene SI HADJ MOHAND   compil mais march...
92
    ServicesServer::getInstance()->linkProcessWithPlugin("sampling_under_refparam", pluginPath);
91edc9c0   Benjamin Renard   Add process to tr...
93
94
95

    ServicesServer::getInstance()->addProcessFactory("tableparamtoparameter", factParamTableProcess);
    ServicesServer::getInstance()->linkProcessWithPlugin("tableparamtoparameter", pluginPath);
fbe3c2bb   Benjamin Renard   First commit
96
}