VR-Forces 4.5 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
include
vrfMsgTransport
vrfSignalMessageProcessor.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2007 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: signalMessageProcessor.h,v $ $Revision: 1.1 $ $State: Exp $
7
*******************************************************************************/
8
11
13
14
#ifndef DtVrfSignalMessageProcessor_h
15
#define DtVrfSignalMessageProcessor_h
16
17
#include "
vrfMsgTransport/vrfMsgTransportDefines.h
"
18
19
#include <string>
20
21
class
DtRadioMessageListener
;
22
28
class
DT_DLL_vrfMsgTransport
DtVrfSignalMessageProcessor
29
{
30
private
:
32
33
DtVrfSignalMessageProcessor
(
const
DtVrfSignalMessageProcessor
& orig);
34
DtVrfSignalMessageProcessor
& operator=(
const
DtVrfSignalMessageProcessor
& orig);
36
38
protected
:
39
41
DtVrfSignalMessageProcessor
(
const
char
* pName);
42
44
virtual
bool
init
();
45
46
public
:
47
49
virtual
~
DtVrfSignalMessageProcessor
();
50
53
bool
enabled()
const
;
54
virtual
void
setEnabled(
bool
bIsEnabled);
56
59
virtual
void
installSelf(
DtRadioMessageListener
& rml);
60
63
const
std::string& name()
const
;
64
void
setName(
const
std::string& sName);
66
67
public
:
68
72
static
DtVrfSignalMessageProcessor
* create(
const
char
* pName);
73
74
protected
:
75
76
bool
myEnabled
;
77
std::string
myName
;
78
};
79
80
inline
bool
DtVrfSignalMessageProcessor::enabled
()
const
81
{
82
return
(
myEnabled
);
83
}
84
85
inline
const
std::string&
DtVrfSignalMessageProcessor::name
()
const
86
{
87
return
(
myName
);
88
}
89
90
inline
void
DtVrfSignalMessageProcessor::setName
(
const
std::string& sName)
91
{
92
myName
= sName;
93
}
94
95
#endif
Document ID: Generated on Thu Mar 23 18:54:12 EDT 2017 from SVN revision 174804
Copyright © 2005-2017 VT MÄK. All Rights Reserved (
www.mak.com
)