root/vtcross/trunk/src/service_management_layer/ServiceManagementLayer.cpp @ 163

Revision 163, 1.2 KB (checked in by bhilburn, 15 years ago)

Deleting old empty file, adding implementation file for the SML.

Line 
1/* Virginia Tech Cognitive Radio Open Source Systems
2 * Virginia Tech, 2009
3 *
4 * LICENSE INFORMATION GOES HERE
5 */
6
7/* DESCRIPTION OF FILE.
8 */
9
10
11#include <cstdlib>
12#include <cstring>
13#include <stdint.h>
14
15#include "vtcross/common.h"
16#include "vtcross/components.h"
17#include "vtcross/containers.h"
18#include "vtcross/debug.h"
19#include "vtcross/error.h"
20#include "vtcross/socketcomm.h"
21
22
23ServiceManagementLayer::ServiceManagementLayer()
24{
25}
26
27
28ServiceManagementLayer::~ServiceManagementLayer()
29{
30}
31
32
33void
34ServiceManagementLayer::GetRemoteComponentType(int32_t socketFD)
35{
36}
37
38
39void
40ServiceManagementLayer::WaitForSignal(int32_t socketFD)
41{
42}
43
44
45void
46ServiceManagementLayer::Shutdown()
47{
48}
49
50
51void
52ServiceManagementLayer::Reset()
53{
54}
55
56
57void
58ServiceManagementLayer::RegisterComponent(int32_t socketFD)
59{
60}
61
62
63void
64ServiceManagementLayer::DeregisterComponent(int32_t socketFD)
65{
66}
67
68
69void
70ServiceManagementLayer::TransferRadioConfiguration()
71{
72}
73
74
75void
76ServiceManagementLayer::TransferExperience()
77{
78}
79
80
81void
82ServiceManagementLayer::ReceiveServices()
83{
84}
85
86
87void
88ServiceManagementLayer::SetActiveMission()
89{
90}
91
92
93void
94ServiceManagementLayer::ListServices()
95{
96}
97
98
99void
100ServiceManagementLayer::ReloadConfiguration()
101{
102}
103
104
105void
106ServiceManagementLayer::LoadConfiguration()
107{
108}
109
Note: See TracBrowser for help on using the browser.