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
include
vrfplan
simConditionalStatement.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2016 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
8
9
#pragma once
10
11
#include "
vrfplan/vrfplanDefines.h
"
12
#include "
vrfplan/rwCondExpr.h
"
13
#include "
vrfplan/simStatement.h
"
14
15
#include <vlutil/vlNetTypes.h>
16
17
class
DtRwCondExpr
;
18
class
DtSimCondExpr
;
19
25
class
DT_DLL_vrfplan
DtSimConditionalStatement
:
public
DtSimStatement
26
{
27
public
:
28
30
DtSimConditionalStatement
(
const
DtString
& name,
DtReaderWriterRegistry
* parentRegistry = NULL)
31
:
DtSimStatement
(name, parentRegistry)
32
{
33
}
34
36
DtSimConditionalStatement
(
const
DtSimConditionalStatement
& orig,
37
DtReaderWriterRegistry
* parentRegistry = NULL)
38
:
DtSimStatement
(orig, parentRegistry)
39
{
40
}
41
43
virtual
~DtSimConditionalStatement
() {};
44
46
virtual
const
DtSimCondExpr
* condExpr()
const
= 0;
47
49
virtual
void
setCondExpr(
const
DtSimCondExpr
* arg) = 0;
50
};
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
)