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.cpp
Go to the documentation of this file.
1//
2// Created by caleb on 11/9/21.
3//
4
5#include "Node.hpp"
6
7
8template<typename V>
9Node<V>::Node(V data) {
10 this->data = data;
11}
12
13template<typename V>
15 return data;
16}
17
18template<typename V>
19void Node<V>::SetData(V newData) {
20 data = newData;
21}
V getData()
Definition Node.cpp:14
Node(V data)
Definition Node.cpp:9
void SetData(V newData)
Definition Node.cpp:19