Alex Bikfalvi
SimStream Documentation
TopoBriteNode.h
00001 #pragma once 00002 00003 #include "TopoNode.h" 00004 00005 class CTopoBriteNode : public CTopoNode 00006 { 00007 private: 00008 __uint32 id; 00009 __uint32 xpos; 00010 __uint32 ypos; 00011 __uint32 degree; 00012 00013 __uint32* edges; 00014 __uint32 edgeSet; 00015 00016 public: 00017 CTopoBriteNode( 00018 __uint32 id, 00019 __uint32 xpos, 00020 __uint32 ypos, 00021 __uint32 degree 00022 ); 00023 ~CTopoBriteNode(); 00024 00025 inline __uint32 Id() { return this->id; } 00026 inline __uint32 XPos() { return this->xpos; } 00027 inline __uint32 YPos() { return this->ypos; } 00028 inline __uint32 Degree() { return this->degree; } 00029 inline __uint32 Edge(__uint32 index) { return this->edges[index]; } 00030 void SetEdge(__uint32 edge); 00031 };
Last updated: February 8, 2011