-
Notifications
You must be signed in to change notification settings - Fork 22
/
PluginA.cpp
69 lines (56 loc) · 1.21 KB
/
PluginA.cpp
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <iostream>
#include <cmath>
#include <psdk/factory.hpp>
class IMathFunction
{
public:
virtual const char* Name() const = 0;
virtual double Eval(double x) const = 0;
virtual ~IMathFunction() = default;
};
// Forward declarations
// class Exp; // : public IMathFunction;
// class Log; // : public IMathFunction;
// ====== Implementations of this module ==== //
class Exp: public IMathFunction
{
public:
Exp() = default;
const char* Name() const {
return "Exp";
}
double Eval(double x) const {
return std::exp(x);
}
};
class Log: public IMathFunction
{
public:
Log() = default;
const char* Name() const {
return "Log";
}
double Eval(double x) const {
return std::log(x);
}
};
// ===== Factory Function - Plugin EntryPoint ==== //
PSDK_PLUGIN_EXPORT_C
auto GetPluginFactory() -> IPluginFactory*
{
static PluginFactory pinfo = []{
auto p = PluginFactory("PluginA", "0.1-alpha");
p.registerClass<Exp>("Exp");
p.registerClass<Log>("Log");
return p;
}();
return &pinfo;
}
struct _DLLInit{
_DLLInit(){
std::cerr << " [TRACE] Shared library PluginA loaded OK." << std::endl;
}
~_DLLInit(){
std::cerr << " [TRACE] Shared library PluginA unloaded OK." << std::endl;
}
} dll_init;