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
8
template
<
typename
V>
9
Node<V>::Node
(V data) {
10
this->data = data;
11
}
12
13
template
<
typename
V>
14
V
Node<V>::getData
() {
15
return
data;
16
}
17
18
template
<
typename
V>
19
void
Node<V>::SetData
(V newData) {
20
data = newData;
21
}
Node.hpp
Node::getData
V getData()
Definition
Node.cpp:14
Node::Node
Node(V data)
Definition
Node.cpp:9
Node::SetData
void SetData(V newData)
Definition
Node.cpp:19
src
Node.cpp
Generated by
1.10.0