Om  1.0.0
A universal framework for multimedia simulation
Public Member Functions | Static Public Member Functions | List of all members
om::scripting::mir::lang::IfStatement Class Reference

A class that represents a conditional if-else statement pattern. More...

#include <omScriptingMirStatements.h>

Inheritance diagram for om::scripting::mir::lang::IfStatement:
om::scripting::mir::lang::Statement om::scripting::mir::lang::ASTNode

Public Member Functions

 IfStatement (const Shared< Expression > &newCondition, const Shared< Statement > &newThenStatement, const Shared< Statement > &newElseStatement)
 Create a new if statement with the specified condition, 'then' statement, and 'else' statement. More...
 
const Shared< Expression > & getCondition () const
 Return a pointer to the expression which represents the condition being tested. More...
 
void setCondition (const Shared< Expression > &newCondition)
 Set a pointer to the expression which represents the condition being tested. More...
 
const Shared< Statement > & getThenStatement () const
 Return a pointer to the statement that is executed if the condition is true. More...
 
const Shared< Statement > & getElseStatement () const
 Return a pointer to the statement that is executed if the condition is false. More...
 
- Public Member Functions inherited from om::scripting::mir::lang::Statement
 Statement (Type newType)
 Create a new statement with the specified statement type enum value. More...
 
Type getType () const
 Return the type of this statement. More...
 
- Public Member Functions inherited from om::scripting::mir::lang::ASTNode
 ASTNode ()
 Create a new AST node with no node position specified. More...
 
 ASTNode (const Position &newPosition)
 Create a new AST node which corresponds to a token starting at the specified source code position. More...
 
virtual ~ASTNode ()
 Destroy this AST node object. More...
 
const PositiongetPosition () const
 Return an object representing the position of this AST node in the source code. More...
 
void setPosition (const Position &newPosition)
 Set the position of this AST node in the source code. More...
 

Static Public Member Functions

static Shared< IfStatementconstruct (const Shared< Expression > &newCondition, const Shared< Statement > &newThenStatement, const Shared< Statement > &newElseStatement)
 Construct a smart-pointer-wrapped instance of this class using the constructor with the given arguments. More...
 
- Static Public Member Functions inherited from om::scripting::mir::lang::Statement
static Shared< Statementconstruct (Type newType)
 Construct a smart-pointer-wrapped instance of this class using the constructor with the given arguments. More...
 

Additional Inherited Members

- Public Types inherited from om::scripting::mir::lang::Statement
enum  Type {
  BLOCK, IF, WHILE, FOR,
  SWITCH, EXPRESSION, RETURN, BREAK,
  CONTINUE, THROW, TRY_CATCH
}
 An enum that specifies the different types of statements. More...
 

Detailed Description

A class that represents a conditional if-else statement pattern.

Constructor & Destructor Documentation

om::scripting::mir::lang::IfStatement::IfStatement ( const Shared< Expression > &  newCondition,
const Shared< Statement > &  newThenStatement,
const Shared< Statement > &  newElseStatement 
)
inline

Create a new if statement with the specified condition, 'then' statement, and 'else' statement.

Member Function Documentation

const Shared<Expression>& om::scripting::mir::lang::IfStatement::getCondition ( ) const
inline

Return a pointer to the expression which represents the condition being tested.

void om::scripting::mir::lang::IfStatement::setCondition ( const Shared< Expression > &  newCondition)
inline

Set a pointer to the expression which represents the condition being tested.

const Shared<Statement>& om::scripting::mir::lang::IfStatement::getThenStatement ( ) const
inline

Return a pointer to the statement that is executed if the condition is true.

const Shared<Statement>& om::scripting::mir::lang::IfStatement::getElseStatement ( ) const
inline

Return a pointer to the statement that is executed if the condition is false.

static Shared<IfStatement> om::scripting::mir::lang::IfStatement::construct ( const Shared< Expression > &  newCondition,
const Shared< Statement > &  newThenStatement,
const Shared< Statement > &  newElseStatement 
)
inlinestatic

Construct a smart-pointer-wrapped instance of this class using the constructor with the given arguments.


The documentation for this class was generated from the following file: