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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
#include<iostream>
#include <stdio.h>
using namespace std;
class Room{
private:
int Windows;
int Doors;
int Cupboard;
public:
void choiceM();
void menu();
void addFurniture();
void displayFurniture();
void deleteFurniture();
void BedroomType();
Room()
{
Doors = d;
Windows = w;
Cupboards = c;
}
void ShowR()
{
cout<<""<<Doors<<"Door(s)"<<endl;
cout<<""<<Windows<<"Window(s)"<<endl;
cout<<""<<Cupboards<<"Cupboard(s)"<<endl;
}
void choiceM ();
void menu ();
void addRoom ();
void deleteRoom ();
void editRoom ();
void displayRoom ();
};
Room* r;
void GetR(int, char*);//member function: retrieve room details
void CreateR(int); //member function: create room
class Bathroom:public Room
{
private:
int Bath;
int Shower;
int Toilet;
public:
Bathroom():Room()//constructor
{Bath = Shower = Toilet = 0;}
void CreateBathroom(int bath, int shower, int toilet, int b, int s, int t, int d, int w, int c)
{
//set bathroom variables
CreateRoom(d,w,c);
Bath = b;
Shower = s;
Toilet = t;
}
void ShowB()
{
//display bathroom details
ShowR();
cout<<""<<Bath<<"Bath(s)"<<endl;
cout<<""<<Shower<<"Shower(s)"<<endl;
cout<<""<<Toilet<<"Toilet(s)"<<endl;
}
void addFurniture;
};
Bathroom* b;
void CreateB(int);
class Bedroom:public Room
{
private:
int Bed;
int Lamp;
int Pillow;
public:
Bedroom():Room()
{Bed = Lamp = Pillow = 0; }
void CreateBedroom(int Bed, int Lamp, int Pillow, int e, int l, int p)
{
createRoom(d,w,c);
Bed= e;
Pillow = p;
Lamp = l;
}
void ShowBr()
{
//display Bedroom details
ShowR();
cout<<""<<Bed<<"Bed(s)"<<endl;
cout<<""<<Lamp<<"Lamp(s)"<<endl;
cout<<""<<Pillow<<"Pillow(s)"<<endl;
}
void addFurniture;
};
class SingleRoom:public Room, Bedroom
{
private:
int Computer;
int Shelves;
int Fans;
public:
SingleRoom():Bedroom()
{Computer = Shelves = Fans = 0;}
void CreateSingleBedroom(int Computer, int Shelves, int Fans, int x, int y, int z)
{
createRoom(d,w,c);
createBedroom(e,p,l);
Computer= x;
Shelves = y;
Fans = z;
}
void ShowSBR()
{
//display Single Bedroom details
ShowBr();
ShowR();
cout<<""<<Computer<<"Computer(s)"<<endl;
cout<<""<<Shelves<<"Shelves(s)"<<endl;
cout<<""<<Fans<<"Fan(s)"<<endl;
}
void addFurniture;
};
class DoubleRoom:public Room, Bedroom
{
private:
int StudyTable;
int NightTable;
int Aircond;
public:
DoubleRoom():Bedroom()
{StudyTable = NightTable = Aircond = 0;}
void CreateDoubleBedroom(int StudyTable, int NightTable, int Aircond, int u, int w, int r)
{
createRoom(d,w,c);
createBedroom(e,p,l);
Bed= e;
Pillow = p;
Lamp = l;
}
void showDBR()
{
//display Double Bedroom details
ShowBr();
ShowR();
cout<<""<<StudyTable<<"StudyTable(s)"<<endl;
cout<<""<<NightTable<<"NightTable(s)"<<endl;
cout<<""<<Aircond<<"Aircond(s)"<<endl;
}
void addFurniture;
};
//*******************************************
// Function for Display Room Menu
//*******************************************
void displayMenu(){
cout<<endl;
cout<<"\t============================================";
cout<<"\n\t\t Please Choose Your Room";
cout<<endl;
cout<<"\t============================================";
cout<<endl;
cout<<"t------------|MENU|--------------";
cout<<endl<<endl<<endl;
cout<< "1. Bathroom "<<endl;
cout<< "2. Bedroom "<<endl;
cout<< "3. Back to Main Menu "<<endl;
cout<< "\nEnter your Choice:";
}
void deleteRoom();
void viewRoom();
void addRoom();
void mainMenu();
void exit();
//******************************************
//Function for Display Main Menu
//******************************************
void displayMain(){
cout<< "\t------------|MENU|--------------";
cout<<endl;
cout<< "\n\t\t1. Add Room";
cout<< "\n\t\t2. View Room";
cout<< "\n\t\t3. Delete Room";
cout<< "\n\t\t4. Exit";
cout<< "\n\t\t5. Main Menu";
cout<< "\nEnter your Choice:";
}
int RoomQ();
Room();
}
//****************************************************
// FUNCTION TO ADD FURNITURE
//****************************************************
void Room::addFurniture(string a)
|