-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCar.h
93 lines (73 loc) · 1.74 KB
/
Car.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// Created by Rohan Chander on 8/1/22.
//
#ifndef TREE_CAR_REC_SERVICE_CAR_H
#define TREE_CAR_REC_SERVICE_CAR_H
#include <iostream>
using namespace std;
class Car {
private:
string model;
string brand;
int year;
double horsepower;
double cityMPG;
double highwayMPG;
string fuel;
double price;
int indexInLeaves;
// double gears;
//string classification;
//string transmission;
//string engine;
public:
Car() {
}
Car(string carModel, string carBrand, int carYear, double carHP, double carCityMpg, double carHighwayMPG,
string carFuel, double carPrice/*, double numGears*/) {
this->model = carModel;
this->brand = carBrand;
this->year = carYear;
this->horsepower = carHP;
this->cityMPG = carCityMpg;
this->highwayMPG = carHighwayMPG;
this->fuel = carFuel;
this->price = carPrice;
this->indexInLeaves = 0;
// this->gears = numGears;
}
const string &getModel() const {
return model;
}
const string &getBrand() const {
return brand;
}
int getYear() const {
return year;
}
double getHorsepower() const {
return horsepower;
}
double getCityMpg() const {
return cityMPG;
}
double getHighwayMpg() const {
return highwayMPG;
}
const string &getFuel() const {
return fuel;
}
double getPrice() const {
return price;
}
void setIndexInLeaves(int indexInLeaves) {
Car::indexInLeaves = indexInLeaves;
}
int getIndexInLeaves() const {
return indexInLeaves;
}
// double getGears() const {
// return gears;
// }
};
#endif //TREE_CAR_REC_SERVICE_CAR_H