-
Notifications
You must be signed in to change notification settings - Fork 0
/
xwiimotelibBuilder.cpp
65 lines (54 loc) · 1.49 KB
/
xwiimotelibBuilder.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
/**
xwiimotelibBuilder implementation.
*/
#include "xwiimoteIO.h"
#include "xwiimotelibBuilder.h"
using namespace xwiimotelib;
/*!
\inmodule xwiimotelib
\namespace xwiimotelib
\brief Contains xwiimotelib implementation classes.
Click into each class to see the documentation for that class, or search for a keyword in the help documentation.
*/
/**
\internal
Do not edit. Autogenerated Builder constructor.
*/
xwiimotelibBuilder::xwiimotelibBuilder(const char* libName)
: CDPBuilder(libName, __DATE__ " " __TIME__)
{
}
/**
\internal
Do not edit. Autogenerated Builder CDPComponent factory function.
*/
CDPComponent* xwiimotelibBuilder::CreateNewComponent(const std::string& type)
{
if (type=="xwiimotelib.xwiimoteIO")
return new xwiimoteIO;
return CDPBuilder::CreateNewComponent(type);
}
/**
\internal
Do not edit. Autogenerated Builder CDPBaseObject factory function.
*/
CDPBaseObject* xwiimotelibBuilder::CreateNewCDPOperator(const std::string& modelName, const std::string& type, const CDPPropertyBase* inputProperty)
{
return CDPBuilder::CreateNewCDPOperator(modelName, type, inputProperty);
}
/**
\internal
Do not edit. Autogenerated Builder CDPObject factory function.
*/
CDPObject* xwiimotelibBuilder::CreateNewObject(const std::string& type)
{
return CDPBuilder::CreateNewObject(type);
}
/**
\internal
CDPNode factory function.
*/
CDP::StudioAPI::CDPNode* xwiimotelibBuilder::CreateNewCDPNode(const std::string& type)
{
return CDPBuilder::CreateNewCDPNode(type);
}