VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
examples
addFomClass
addFomClassGui
addFomClassGuiAccessory.h
Go to the documentation of this file.
1
/******************************************************************************
2
** Copyright (c) 2018 MAK Technologies, Inc.
3
** All rights reserved.
4
******************************************************************************/
5
6
#pragma once
7
8
#include <
vrfVrlSharedSource/vrfProtocol.h
>
9
#include <
vrvCore/DtBaseAccessory.h
>
10
#include <
vrvCore/DtEntityState.h
>
11
#include <
vrfVrlSharedSource/vrfDriver.h
>
12
13
namespace
makVrv
14
{
15
class
DtConnection;
16
}
17
18
namespace
makVrf
19
{
20
namespace
VRF_PROTOCOL_NAMESPACE
21
{
22
class
DtVrfDriver;
23
}
24
}
25
26
//\brief This class defines an accessory that will install itself
27
//into DtVrlinkDriver objects and print out the esr of entities
28
//as they are discovered.
29
class
DtAddFomClassGuiAccessory
:
public
makVrv::DtBaseAccessory
30
{
31
public
:
32
//\Default constructor
33
DtAddFomClassGuiAccessory
();
34
35
//\Default destructor
36
virtual
~DtAddFomClassGuiAccessory
();
37
38
//\brief Called when this accessory is installed into a connector.
39
virtual
void
install
(
makVrv::DtDriver
* driver);
40
41
//\brief Called when this accessory is uninstalled
42
virtual
void
uninstall
(
makVrv::DtDriver
* baseConn);
43
44
//\brief Called to find out if this accessory is compatible with a
45
//particular connector. In this case, it is compatible with any
46
//DtVrlinkDriver of the correct protocol
47
virtual
bool
isCompatible
(
makVrv::DtDriver
* driver);
48
49
protected
:
50
51
//\brief Called before the reflected lists are created.
52
virtual
void
slot_onReflectedListAboutToBeCreated
();
53
54
protected
:
55
makVrf::VRF_PROTOCOL_NAMESPACE::DtVrfDriver
*
myDriver
;
56
};
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)