Roomba Controller Dashboard 1
A GUI and TCP client application that is used to control a Roomba for Computer Engineering 2880 @ Iowa State
Loading...
Searching...
No Matches
Node.hpp
Go to the documentation of this file.
1//
2// Created by caleb on 11/9/21.
3//
4
5#ifndef ANOTHERGRAPH_NODE_H
6#define ANOTHERGRAPH_NODE_H
7
8
9#include "Pose2D.hpp"
10
16template <typename V>
17class Node {
18 private:
22 V data;
23
24 public:
29 Node(V data);
30
34 V getData();
35
40 void SetData(V newData);
41};
42
43#include "Node.cpp"
44
45#endif //ANOTHERGRAPH_NODE_H
Definition Node.hpp:17
V getData()
Definition Node.cpp:14
Node(V data)
Definition Node.cpp:9
void SetData(V newData)
Definition Node.cpp:19