-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cpp
47 lines (39 loc) · 906 Bytes
/
Main.cpp
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 "Sedan.h"
#include "Hatchback.h"
// Sedan salesperson
void sedanSalesperson(Vehicle* tWhat)
{
tWhat->vehicleNumberOfDoors();
tWhat->vehicleTrunkSize();
tWhat->vehicleEngineIsOn();
}
// Sedan accountant
void sedanAccountant(Vehicle* tWhat)
{
tWhat->vehiclePrice();
}
// Hatchback salesperson
void hatchbackSalesperson(Vehicle* tWhat)
{
tWhat->vehicleNumberOfDoors();
tWhat->vehicleTrunkSize();
tWhat->vehicleEngineIsOn();
}
// Hatchback accountant
void hatchbackAccountant(Vehicle* tWhat)
{
tWhat->vehiclePrice();
}
int main()
{
Hatchback* tHatchback = new Hatchback;
Sedan* tSedan = new Sedan;
hatchbackSalesperson(tHatchback);
hatchbackAccountant(tHatchback);
std::cout << "-----------------------------" << std::endl;
sedanSalesperson(tSedan);
sedanAccountant(tSedan);
delete tHatchback;
delete tSedan;
}