/usr/include/trilinos/RTC_NormalBlockRTC.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 | #ifndef _NORMALBLOCKRTC_H
#define _NORMALBLOCKRTC_H
#include "RTC_BlockRTC.hh"
#include "RTC_TokenizerRTC.hh"
#include <string>
#include <map>
namespace PG_RuntimeCompiler {
/**
* A NormalBlock represents a block of code that executes unconditionally.
* NormalBlock extends Block because it is a Block.
*/
class NormalBlock : public Block
{
public:
/**
* Constructor -> The constructor creates the parent Block and tells the
* 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
*/
NormalBlock(std::map<std::string, Variable*> vars, Tokenizer& lines,
std::string& errs);
/**
* Destructor -> The destructor is a no-op.
*/
~NormalBlock() {}
/**
* execute -> This method executes this NormalBlock.
*/
Value* execute();
};
}
#endif
|