-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedge.cpp
62 lines (50 loc) · 907 Bytes
/
edge.cpp
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
53
54
55
56
57
58
59
60
61
#include "vertex.h"
#include "edge.h"
#include <string>
using namespace std;
/* Edge::Edge (Vertex* firstVertex, Vertex* secVertex, double inCost, string tag)
{
this->orig = firstVertex;
this->dest = secVertex;
this->cost = inCost;
this->tag.assign(tag);
} */
void Edge::setValues(Vertex firstVertex, Vertex secVertex, double inCost, string tag)
{
this->orig = firstVertex;
this->dest = secVertex;
this->cost = inCost;
this->tag.assign(tag);
}
void Edge::setDestVertex(Vertex dest)
{
this->dest = dest;
}
void Edge::setOrigVertex(Vertex orig)
{
this->orig = orig;
}
void Edge::setCost(double cost)
{
this->cost = cost;
}
void Edge::setTag(string tag)
{
this->tag = tag;
}
Vertex Edge::getDestVertex()
{
return this->dest;
}
Vertex Edge::getOrigVertex()
{
return this->orig;
}
double Edge::getCost()
{
return this->cost;
}
string Edge::getTag()
{
return this->tag;
}