VR-Forces 4.3 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
examples
objectManager
myObjectManager.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2003 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: myObjectManager.h,v $ $Revision: 1.4 $ $State: Exp $
7
*******************************************************************************/
8
9
#ifndef MyObjectManager_H_
10
#define MyObjectManager_H_
11
12
#include "
vrfobjcore/vrfObjectManager.h
"
13
14
class
MyObjectManager
:
public
DtVrfObjectManager
15
{
16
public
:
17
18
//The constructor takes a DtSimManager and entityAdvisory which get passed
19
//to the base class
20
MyObjectManager
(
DtSimManager
*
simManager
,
int
entityAdvisory);
21
22
//destructor
23
virtual
~MyObjectManager
();
24
25
//This is a good place to add your own behavior.
26
virtual
void
tick
();
27
28
public
:
29
30
//Creator function to be registered with the DtDefaultVrfCreator from
31
//main.cxx
32
static
DtVrfObjectManager
*
creator
(
DtSimManager
* simManager,
33
int
entityAdvisory);
34
35
};
36
37
#endif
38
39
Document ID: Generated on Wed Mar 11 21:20:57 EDT 2015 from SVN revision 150940
Copyright © 2005-2014 VT MÄK. All Rights Reserved (
www.mak.com
)