00001 #ifndef EDGE_H_INCLUDED_
00002 #define EDGE_H_INCLUDED_
00003
00004 #include<iostream>
00005
00006 namespace risc{
00007
00008 namespace sg {
00009
00010
00011 class Edge{
00012
00013 public:
00014 friend std::ostream& operator<< (std::ostream &out, const Edge &e)
00015 {
00016 return out;
00017 }
00018 };
00019
00020
00021 }
00022
00023 }
00024
00025 #endif
00026
00027