-
Notifications
You must be signed in to change notification settings - Fork 0
/
pod.h
29 lines (23 loc) · 848 Bytes
/
pod.h
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
#ifndef HYPED_GIT_WSHOP_POD_H
#define HYPED_GIT_WSHOP_POD_H
#include <string>
/// TASK 10.1 (BOTH) ///////////////////////////////////////////////////////////
#include "navigation.h"
#include "bms.h"
/// END OF TASK 10.1 (BOTH) ////////////////////////////////////////////////////
class Pod
{
public:
Pod();
std::string get_name();
double get_max_speed();
// TASKS 3 (PERSON A) & 4 (PERSON B) //////////////////////////////////////
double get_pressure();
/// END OF TASKS 3A & 4B ///////////////////////////////////////////////////
double get_temperature();
/// TASK 10.2 (BOTH) ///////////////////////////////////////////////////////
Navigation nav;
BatteryManagementSystem bms;
/// END OF TASK 10.2 (BOTH) ////////////////////////////////////////////////
};
#endif //HYPED_GIT_WSHOP_POD_H