/usr/include/trilinos/RTC_ForBlockRTC.hh is in libtrilinos-pamgen-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #ifndef _FORBLOCKRTC_H
#define _FORBLOCKRTC_H
#include "RTC_LineRTC.hh"
#include "RTC_BlockRTC.hh"
#include "RTC_TokenizerRTC.hh"
#include <string>
#include <map>
namespace PG_RuntimeCompiler {
/**
* A ForBlock represents a block of code within a for-loop.
* ForBlock extends Block because it is a Block.
*/
class ForBlock : public Block
{
public:
/**
* Constructor -> The constructor contructs the parent Block, finds and
* creates each component of the for loop, and tells parent to
* create its sub statements.
*
* @param vars - A map of already active variables
* @param lines - The array of strings that represent the lines of the code.
* @param errs - A string containing the errors that have been generated by
* the compiling of lines. If errs is not empty, then the
* program has not compiled succesfully
*/
ForBlock(std::map<std::string, Variable*> vars, Tokenizer& lines,
std::string& errs);
/**
***************** Destructor *******************
* The destructor deletes _condition, _init, and _postloop.
*/
~ForBlock();
/*
* execute -> This method executes this ForBlock. The _init is run,
* _condition is evaluated and the loop enters if _condition is
* true. After each loop, _postloop is run and _condition is
* re-evaluated to determine if we loop again.
*/
Value* execute();
private:
Line* _init; /**!< The line of code that is run when the for-loop is entered.
* For example, for: for(int i = 0; i < 10; ++i)...
* int i = 0 is the _init
*/
Line* _condition; /**!< The line thats checked to see if the loop should stop
* For example, for: for(int i = 0; i < 10; ++i)...
* i < 10 is the _condition
*/
Line* _postloop; /**!< The line that is run at the end of every loop.
* For example, for: for(int i = 0; i < 10; ++i)...
* ++i is the _postloop
*/
};
}
#endif
|