-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNode.h
52 lines (30 loc) · 1012 Bytes
/
Node.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef NODE_H
#define NODE_H
#include <string>
#include <list>
class Edge;
//-------------------------------------------------------------------------------------------------
class Node
{
public:
Node();
Node(std::string id);
enum Direction { DIR_IN, DIR_OUT, DIR_BOTH };
virtual ~Node() {}
const std::string& getId() const { return m_id; }
std::list<Edge*>& getOutEdges() { return m_outEdges; }
std::list<Edge*>& getInEdges() { return m_inEdges; }
std::list<Node*> getNeighbours(Direction direction = DIR_BOTH);
virtual bool operator==(const Node& rOther) const { return m_id == rOther.m_id; }
virtual bool operator<(const Node& rOther) const { return m_id < rOther.m_id; }
private:
std::string m_id;
std::list<Edge*> m_outEdges;
std::list<Edge*> m_inEdges;
static int s_numInstances;
#ifdef TESTING
friend class GraphTesting;
#endif
};
//-------------------------------------------------------------------------------------------------
#endif