VR-Forces Development_Version 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
vrfutil
rwChannelDescriptor.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2015 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
#pragma once
6
7
#include "
vrfutil/readerWriter.h
"
8
#include "
vrfutil/rwInt.h
"
9
#include "
vrfutil/rwString.h
"
10
#include "
vrfutil/rwBoolean.h
"
11
#include "
vrfutil/rwTemplatedList.h
"
12
13
#include "
tdbutil/symbolString.h
"
14
15
#include "
vrfutil/vrfutilDefines.h
"
16
class
DT_DLL_vrfutil
DtRwChannelDescriptor
:
public
DtReaderWriter
17
{
18
public
:
19
DtRwChannelDescriptor
(
const
DtString
& name,
DtReaderWriterRegistry
*
20
parentRegistry = NULL,
bool
readonly =
false
);
21
DtRwChannelDescriptor
(
const
DtSymbolString
& name,
DtReaderWriterRegistry
*
22
parentRegistry = NULL,
bool
readonly =
false
);
23
25
DtRwChannelDescriptor
(
const
DtString
& name,
const
DtRwChannelDescriptor
& orig,
26
DtReaderWriterRegistry
* parentRegistry = NULL);
27
DtRwChannelDescriptor
(
const
DtSymbolString
& name,
const
DtRwChannelDescriptor
& orig,
28
DtReaderWriterRegistry
* parentRegistry = NULL);
29
31
explicit
DtRwChannelDescriptor
(
const
DtRwChannelDescriptor
&,
32
DtReaderWriterRegistry
* parentRegistry = NULL);
33
35
const
DtReaderWriter
&
operator=
(
const
DtRwChannelDescriptor
& orig);
36
38
bool
operator==
(
const
DtRwChannelDescriptor
& rhs)
const
;
39
40
bool
operator!=
(
const
DtRwChannelDescriptor
& rhs) {
return
!(*
this
== rhs); };
41
43
virtual
~
DtRwChannelDescriptor
();
44
45
virtual
const
char
*
readerWriterType
()
const
;
46
47
virtual
DtString
prettyPrint
()
const
;
48
49
virtual
int
notifyLevel()
const
;
50
virtual
void
setNotifyLevel(
int
nl);
51
52
virtual
DtString
prefix()
const
;
53
virtual
void
setPrefix(
const
DtString
& prefix);
54
55
virtual
bool
enabled()
const
;
56
virtual
void
setEnabled(
bool
enabled);
57
58
protected
:
59
DtRwInt
myNotifyLevel
;
60
DtRwString
myPrefix
;
61
DtRwBoolean
myEnabled
;
62
};
63
64
typedef
DtRwTemplatedListPtr<DtRwChannelDescriptor, true>
DtRwChannelDescriptorList
;
Document ID: Generated on Tue Mar 8 22:13:38 EST 2016 from SVN revision 162938
Copyright © 2005-2015 VT MÄK. All Rights Reserved (
www.mak.com
)