Go to the documentation of this file.00001 #ifndef CTHREAD_H_INCLUDED_
00002 #define CTHREAD_H_INCLUDED_
00003
00004 #include <vector>
00005
00006 #include "rose.h"
00007 #include "function.h"
00008
00009 namespace risc {
00010
00011 class CThread: public Function {
00012
00013 public:
00014
00018 explicit CThread(SgFunctionDefinition *ast_node);
00019
00020 private:
00024 CThread(const CThread &t);
00025 };
00026
00027 typedef std::vector<CThread*> CThreadVector;
00028 typedef std::vector<CThread*>::iterator CThreadVectorIter;
00029 typedef std::vector<CThread*>::const_iterator CThreadVectorConstIter;
00030
00031 };
00032
00033 #endif
00034
00035