-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPusher.h
47 lines (36 loc) · 1.09 KB
/
Pusher.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <iostream>
#include "Corral.h"
using namespace std;
class Pusher
{
public:
//construct
Pusher();
Pusher(string N, float E, bool M);
~Pusher();
//methods
float goToZero(Corral Zero);
float goToOne(Corral One);
float goToTwo(Corral Two);
float goToThree(Corral Three);
float goToFour(Corral Four);
float goToFive(Corral Five);
float goToSix(Corral Six);
float goToSeven(Corral Seven);
float goToEight(Corral Eight);
float goToNine(Corral Nine);
float Roam(Corral Zero, Corral One, Corral Two, Corral Three, Corral Four, Corral Five, Corral Six, Corral Seven, Corral Eight, Corral Nine);
//getters
string getName();
float getEfficient();
bool getManage();
//setters
void setName(string N);
void setEfficient(float E);
void setManage(bool M);
void print() const;
private:
string name;
float efficient;
bool manage;
};