|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
namespace Thunder {
|
|
24
24
|
namespace Plugin {
|
|
25
25
|
|
|
26
26
|
namespace {
|
|
27
27
|
|
|
28
|
-
static Metadata<InProcess>metadata(
|
|
28
|
+
static Metadata<InProcess> metadata(
|
|
29
29
|
// Version
|
|
30
30
|
1, 0, 0,
|
|
31
31
|
// Preconditions
|
|
32
32
|
{},
|
|
33
33
|
// Terminations
|
|
@@ -57,7 +57,8 @@ namespace Plugin {
|
|
|
57
57
|
return Core::ERROR_NONE;
|
|
58
58
|
}
|
|
59
59
|
uint32_t InProcess::Sub(const uint16_t /* A */, const uint16_t /* B */, uint16_t& /* sum */ /* @out */) const {
|
|
60
60
|
return Core::ERROR_NONE;
|
|
61
61
|
}
|
|
62
|
+
|
|
62
63
|
} // Plugin
|
|
63
64
|
} // Thunder
|
|
@@ -38,12 +38,10 @@ namespace Plugin {
|
|
|
38
38
|
, Exchange::IMath()
|
|
39
39
|
{
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
~InProcess() override = default;
|
|
43
|
-
private:
|
|
44
|
-
public:
|
|
45
43
|
// IPlugin Methods
|
|
46
44
|
const string Initialize(PluginHost::IShell* service) override;
|
|
47
45
|
void Deinitialize(PluginHost::IShell* service) override;
|
|
48
46
|
string Information() const override;
|
|
49
47
|
|
|
@@ -57,10 +55,8 @@ namespace Plugin {
|
|
|
57
55
|
INTERFACE_ENTRY(PluginHost::IPlugin)
|
|
58
56
|
INTERFACE_ENTRY(PluginHost::IDispatcher)
|
|
59
57
|
INTERFACE_ENTRY(Exchange::IMath)
|
|
60
58
|
END_INTERFACE_MAP
|
|
61
59
|
|
|
62
|
-
private:
|
|
63
|
-
|
|
64
60
|
};
|
|
65
61
|
} // Plugin
|
|
66
62
|
} // Thunder
|