InstructionForStatement Class Reference

#include <Instruction.hpp>

Inheritance diagram for InstructionForStatement:

Inheritance graph
[legend]
Collaboration diagram for InstructionForStatement:

Collaboration graph
[legend]

List of all members.

Public Types

enum  Type {
  list, ifStatement, doWhileStatement, whileStatement,
  forStatement, exitStatement, coarseMesh, declaration,
  affectation, increment, input, decrement,
  evaluation, blockBegin, blockEnd, output,
  Using, exec, cat, plot,
  save, none
}

Public Member Functions

void execute ()
 InstructionForStatement (ReferenceCounting< Instruction > a, ReferenceCounting< BooleanExpression > b, ReferenceCounting< Instruction > c, ReferenceCounting< Instruction > statement)
 InstructionForStatement (const InstructionForStatement &I)
 ~InstructionForStatement ()
const Instruction::Typetype () const

Public Attributes

ReferenceCounting< Instruction__instruction1
ReferenceCounting
< BooleanExpression
__booleanExpression
ReferenceCounting< Instruction__instruction2
ReferenceCounting< Instruction__statement

Protected Attributes

const Instruction::Type __type


Detailed Description

Definition at line 230 of file Instruction.hpp.


Member Enumeration Documentation

enum Instruction::Type [inherited]

Enumerator:
list 
ifStatement 
doWhileStatement 
whileStatement 
forStatement 
exitStatement 
coarseMesh 
declaration 
affectation 
increment 
input 
decrement 
evaluation 
blockBegin 
blockEnd 
output 
Using 
exec 
cat 
plot 
save 
none 

Definition at line 49 of file Instruction.hpp.

00049             {
00050     list,
00051     ifStatement,
00052     doWhileStatement,
00053     whileStatement,
00054     forStatement,
00055     exitStatement,
00056     coarseMesh,
00057 
00058     declaration,
00059     affectation,
00060     increment,
00061     input,
00062     decrement,
00063     evaluation,
00064 
00065     blockBegin,
00066     blockEnd,
00067 
00068     output,
00069     Using,
00070     exec,
00071     cat,
00072     plot,
00073     save,
00074     none
00075   };


Constructor & Destructor Documentation

InstructionForStatement::InstructionForStatement ( ReferenceCounting< Instruction a,
ReferenceCounting< BooleanExpression b,
ReferenceCounting< Instruction c,
ReferenceCounting< Instruction statement 
) [inline]

Definition at line 251 of file Instruction.hpp.

00255     : Instruction(Instruction::forStatement),
00256       __instruction1(a),
00257       __booleanExpression(b),
00258       __instruction2(c),
00259       __statement(statement)
00260   {
00261     ;
00262   }

InstructionForStatement::InstructionForStatement ( const InstructionForStatement I  )  [inline]

Definition at line 264 of file Instruction.hpp.

InstructionForStatement::~InstructionForStatement (  )  [inline]

Definition at line 274 of file Instruction.hpp.

00275   {
00276     ;
00277   }


Member Function Documentation

void InstructionForStatement::execute (  )  [inline, virtual]

Implements Instruction.

Definition at line 240 of file Instruction.hpp.

References __booleanExpression, __instruction1, __instruction2, and __statement.

00241   {
00242     for (__instruction1->execute();
00243          __booleanExpression->execute(),
00244            __booleanExpression->boolValue();
00245          __instruction2->execute())
00246       {
00247         __statement->execute();
00248       }
00249   }

const Instruction::Type& Instruction::type (  )  const [inline, inherited]

Definition at line 81 of file Instruction.hpp.

References Instruction::__type.

00082   {
00083     return __type;
00084   }


Member Data Documentation

Definition at line 234 of file Instruction.hpp.

Referenced by execute().

Definition at line 235 of file Instruction.hpp.

Referenced by execute().

Definition at line 236 of file Instruction.hpp.

Referenced by execute().

Definition at line 237 of file Instruction.hpp.

Referenced by execute().

const Instruction::Type Instruction::__type [protected, inherited]

Definition at line 78 of file Instruction.hpp.

Referenced by Instruction::type().


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

Generated on Wed Nov 19 00:08:02 2008 for FreeFEM3D (aka ff3d) by  doxygen 1.5.6