Open
Graph Drawing
Framework

 v.2012.05
 

PQNodeRoot.h
Go to the documentation of this file.
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 
00048 #ifndef OGDF_PQ_NODE_ROOT_H
00049 #define OGDF_PQ_NODE_ROOT_H
00050 
00051 
00052 
00053 namespace ogdf {
00054 
00061 class PQNodeRoot {
00062 
00063 public:
00064     enum PQNodeType { PNode = 1, QNode = 2, leaf = 3 };
00065 
00066     PQNodeRoot() { }
00067     virtual ~PQNodeRoot() { }
00068 
00069     OGDF_NEW_DELETE
00070 };
00071 
00072 }
00073 
00074 #endif
00075