-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathRoom.cpp
40 lines (34 loc) · 1.46 KB
/
Room.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
#include "Room.hpp"
#include <iostream>
#include <iomanip>
Room::Room(std::string roomNumber, RoomType type, double pricePerNight, int capacity)
: roomNumber(roomNumber), type(type), status(RoomStatus::AVAILABLE),
pricePerNight(pricePerNight), capacity(capacity) {}
std::string Room::getRoomNumber() const { return roomNumber; }
RoomType Room::getType() const { return type; }
RoomStatus Room::getStatus() const { return status; }
double Room::getPricePerNight() const { return pricePerNight; }
int Room::getCapacity() const { return capacity; }
void Room::setStatus(RoomStatus status) {
this->status = status;
}
void Room::displayInfo() const {
std::cout << "Room " << roomNumber << std::endl;
std::cout << "Type: ";
switch (type) {
case RoomType::STANDARD: std::cout << "Standard"; break;
case RoomType::DELUXE: std::cout << "Deluxe"; break;
case RoomType::SUITE: std::cout << "Suite"; break;
}
std::cout << std::endl;
std::cout << "Status: ";
switch (status) {
case RoomStatus::AVAILABLE: std::cout << "Available"; break;
case RoomStatus::OCCUPIED: std::cout << "Occupied"; break;
case RoomStatus::UNDER_MAINTENANCE: std::cout << "Under Maintenance"; break;
}
std::cout << std::endl;
std::cout << "Price per night: $" << std::fixed << std::setprecision(2)
<< pricePerNight << std::endl;
std::cout << "Capacity: " << capacity << " persons" << std::endl;
}