00001 /* 00002 * $Revision: 2027 $ 00003 * 00004 * last checkin: 00005 * $Author: gutwenger $ 00006 * $Date: 2010-09-01 11:55:17 +0200 (Wed, 01 Sep 2010) $ 00007 ***************************************************************/ 00008 00053 #ifdef _MSC_VER 00054 #pragma once 00055 #endif 00056 00057 #ifndef OGDF_GRAPH_H 00058 #define OGDF_GRAPH_H 00059 00060 00061 #include <ogdf/basic/List.h> 00062 #include <ogdf/basic/NodeArray.h> 00063 #include <ogdf/basic/EdgeArray.h> 00064 00065 00066 00067 namespace ogdf { 00068 00070 OGDF_EXPORT ostream &operator<<(ostream &os, ogdf::node v); 00071 00073 OGDF_EXPORT ostream &operator<<(ostream &os, ogdf::edge e); 00074 00076 OGDF_EXPORT ostream &operator<<(ostream &os, ogdf::adjEntry adj); 00077 00078 00079 } // end namespace ogdf 00080 00081 #endif