forked from b-com-software-basis/xpcf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentTemplate.cpp
More file actions
38 lines (32 loc) · 909 Bytes
/
Copy pathComponentTemplate.cpp
File metadata and controls
38 lines (32 loc) · 909 Bytes
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
/**
* @copyright Copyright (c) 2015 All Right Reserved, B-com http://www.b-com.com/
*
* This file is subject to the B<>Com License.
* All other rights reserved.
*
* THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
* PARTICULAR PURPOSE.
*
* @author Loïc Touraine
*
* @file
* @brief description of file
* @date 2015-09-18
*/
#include <stdio.h>
#include "ComponentTemplate.h"
// XPCF_ComponentBase
#include "ComponentBase.h"
XPCF_DEFINE_FACTORY_CREATE_INSTANCE(client::ComponentTemplate);
namespace client {
ComponentTemplate::ComponentTemplate ()
{
setUUID(ComponentTemplate::UUID);
addInterface<ITemplateInterface>(this,ITemplateInterface::UUID, "interface ITemplateInterface");
}
ComponentTemplate::~ComponentTemplate ()
{
}
}