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
examples
addSimCommand
addSimCommandSim
mySimCommandExecutor.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2016 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
6
//\file mySimCommandExecutor.h
7
//\brief MySimCommandExecutor.
8
9
#pragma once
10
11
#include "
vrfobjcore/simCommandExecutor.h
"
12
13
//\brief Executor for the MySimCommand DtSimCommand.
14
//Prints the text specified in the command to the console.
15
16
class
MySimCommandExecutor
:
public
DtSimCommandExecutor
17
{
18
public
:
19
MySimCommandExecutor
(
DtSimManager
* simManager);
20
21
virtual
~MySimCommandExecutor
();
22
23
//Prints message to the sim engine console.
24
virtual
bool
execute
(
const
DtSimCommand
* command,
const
DtPlan
* = 0);
25
26
//Prints message to the objectConsole for the named object.
27
virtual
bool
execute
(
const
DtSimCommand
* command,
const
DtUUID
& objectName,
const
DtPlan
* = 0);
28
29
//\return A new instance of this class.
30
static
DtSimCommandExecutor
*
create
(
DtSimManager
* simManager);
31
32
private
:
33
//Not implemented.
34
MySimCommandExecutor
();
35
//Not implemented.
36
MySimCommandExecutor
(
const
MySimCommandExecutor
& orig);
37
//Not implemented.
38
MySimCommandExecutor
&
operator=
(
const
MySimCommandExecutor
& orig);
39
};
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
)