00001 /* 00002 * $Revision: 2299 $ 00003 * 00004 * last checkin: 00005 * $Author: gutwenger $ 00006 * $Date: 2012-05-07 15:57:08 +0200 (Mon, 07 May 2012) $ 00007 ***************************************************************/ 00008 00043 #ifdef _MSC_VER 00044 #pragma once 00045 #endif 00046 00047 #ifndef OGDF_GRAPH_H 00048 #define OGDF_GRAPH_H 00049 00050 00051 #include <ogdf/basic/List.h> 00052 #include <ogdf/basic/NodeArray.h> 00053 #include <ogdf/basic/EdgeArray.h> 00054 00055 00056 00057 namespace ogdf { 00058 00060 OGDF_EXPORT ostream &operator<<(ostream &os, ogdf::node v); 00061 00063 OGDF_EXPORT ostream &operator<<(ostream &os, ogdf::edge e); 00064 00066 OGDF_EXPORT ostream &operator<<(ostream &os, ogdf::adjEntry adj); 00067 00068 00069 } // end namespace ogdf 00070 00071 #endif