00001 #ifndef CHANNEL_H_INCLUDED_
00002 #define CHANNEL_H_INCLUDED_
00003
00004 #include "class.h"
00005
00006 namespace risc {
00007
00008 class Channel: public Class {
00009
00010 public:
00011
00015 explicit Channel(SgClassDefinition *ast_node, Type type);
00016
00017 private:
00018
00022 Channel(const Channel &c);
00023 };
00024
00025
00026 }
00027
00028 #endif
00029
00030