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
parallelTick
parallelTickActuator.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2016 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
6
#ifndef MyParallelTickComponent_H_
7
#define MyParallelTickComponent_H_
8
9
#include "
vrfobjcore/simComponent.h
"
10
11
class
MyParallelTickComponent
:
public
DtSimComponent
12
{
13
public
:
14
15
// "my-parallel-tick-component" - tag used in SMS.
16
static
const
char
*
Tag
;
17
18
//constructor
19
MyParallelTickComponent
(
20
const
DtString
&
name
,
DtVrfObject
*
object
,
21
DtSimManager
*
simManager
,
DtComponentDescriptor
* compDescriptor,
22
DtReaderWriterRegistry
* parentRegistry = 0);
23
24
//Returns a string from compTypes.h, identifying the type of component
25
virtual
const
char
*
type
()
const
;
26
27
//tick function
28
virtual
void
tick
();
29
30
public
:
31
32
//Creator function to be registered with the DtSimComponentFactory --
33
//see main.cxx
34
static
DtSimComponent
*
creator
(
35
const
DtString
&
name
,
DtVrfObject
*
object
,
36
DtSimManager
*
simManager
,
DtComponentDescriptor
* compDescriptor,
37
DtReaderWriterRegistry
* parentRegistry);
38
};
39
40
#endif
41
42
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
)