diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-09-21 15:43:38 +0200 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-09-21 15:43:38 +0200 |
| commit | e483926bf15d6a560885c9b26d1c51a796583745 (patch) | |
| tree | 64d6c5ea8956667e726462bc8262c84a8274c874 /labb3/tsp/src/Tour.cpp | |
| parent | d3e70eb68019f7d4e866dbda6ee8463ec5ad901b (diff) | |
| download | tddd86-e483926bf15d6a560885c9b26d1c51a796583745.tar.gz | |
Given files L3 tsp
Diffstat (limited to 'labb3/tsp/src/Tour.cpp')
| -rw-r--r-- | labb3/tsp/src/Tour.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/labb3/tsp/src/Tour.cpp b/labb3/tsp/src/Tour.cpp new file mode 100644 index 0000000..2dc3fcc --- /dev/null +++ b/labb3/tsp/src/Tour.cpp @@ -0,0 +1,50 @@ +// This is the .cpp file you will edit and turn in. +// We have provided a skeleton for you, +// but you must finish it as described in the spec. +// Also remove these comments here and add your own. +// TODO: remove this comment header + +#include <iostream> +#include "Tour.h" +#include "Node.h" +#include "Point.h" + +Tour::Tour() +{ + // TODO: write this member +} + +Tour::~Tour() +{ + // TODO: write this member +} + +void Tour::show() +{ + // TODO: write this member +} + +void Tour::draw(QGraphicsScene *scene) +{ + // TODO: write this member +} + +int Tour::size() +{ + // TODO: write this member +} + +double Tour::distance() +{ + // TODO: write this member +} + +void Tour::insertNearest(Point p) +{ + // TODO: write this member +} + +void Tour::insertSmallest(Point p) +{ + // TODO: write this member +} |
