root/vtcross/branches/bhilburn/src/policy_engines/policy_engine.cpp @ 140

Revision 140, 0.8 KB (checked in by bhilburn, 15 years ago)

Created the PolicyEngine? implementation file. Have not yet added it to the
Makefile because it is a ways from compiling (or really doing anything) just
yet. Minor touch-up in components.h.

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 "vtcross/common.h"
12#include "vtcross/components.h"
13#include "vtcross/containers.h"
14#include "vtcross/debug.h"
15#include "vtcross/error.h"
16
17
18void PolicyEngine::GetRemoteComponentType()
19{
20}
21
22
23void PolicyEngine::WaitForSignal()
24{
25}
26
27
28void PolicyEngine::Shutdown()
29{
30}
31
32
33void PolicyEngine::Reset()
34{
35}
36
37
38void PolicyEngine::RegisterComponent(socketFD, compType)
39{
40}
41
42
43void PolicyEngine::DeregisterComponent()
44{
45}
46
47
48void PolicyEngine::RegisterServices()
49{
50}
51
52
53void PolicyEngine::DeregisterServices()
54{
55}
56
57
58void PolicyEngine::ReloadPolicies()
59{
60}
61
62void PolicyEngine::LoadPolicies()
63{
64}
65
66
67void PolicyEngine::ValidateParameters()
68{
69}
70
Note: See TracBrowser for help on using the browser.