-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatos_edificio.cpp
135 lines (78 loc) · 3.22 KB
/
datos_edificio.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
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
#include "datos_edificio.h"
Datos_edificio::Datos_edificio(){
this -> nombre = " ";
this -> costo_piedra = 0;
this -> costo_madera = 0;
this -> costo_metal = 0;
this -> maximos_permitidos = 0;
}
// ------------------------------------------------------------------------------------------------------------
Datos_edificio::Datos_edificio(string nombre, double costo_piedra, double costo_madera, double costo_metal, int maximos_permitidos){
this -> nombre = nombre;
this -> costo_piedra = costo_piedra;
this -> costo_madera = costo_madera;
this -> costo_metal = costo_metal;
this -> maximos_permitidos = maximos_permitidos;
}
// ------------------------------------------------------------------------------------------------------------
string Datos_edificio::obtener_nombre_edificio(){
return this -> nombre;
}
// ------------------------------------------------------------------------------------------------------------
double Datos_edificio::obtener_costo_piedra(){
return this -> costo_piedra;
}
// ------------------------------------------------------------------------------------------------------------
double Datos_edificio::obtener_costo_madera(){
return this -> costo_madera;
}
// ------------------------------------------------------------------------------------------------------------
double Datos_edificio::obtener_costo_metal(){
return this -> costo_metal;
}
// ------------------------------------------------------------------------------------------------------------
double Datos_edificio::modificar_costo_piedra( int cantidad){
return this -> costo_piedra = cantidad;
}
// ------------------------------------------------------------------------------------------------------------
double Datos_edificio::modificar_costo_madera(int cantidad){
return this -> costo_madera = cantidad;
}
// ------------------------------------------------------------------------------------------------------------
double Datos_edificio::modificar_costo_metal(int cantidad){
return this -> costo_metal = cantidad;
}
// ------------------------------------------------------------------------------------------------------------
int Datos_edificio::obtener_maximos_permitidos(){
return this -> maximos_permitidos;
}
// ------------------------------------------------------------------------------------------------------------
void Datos_edificio::mostrar_informacion(){
cout
<< left
<< setw(30)
<< this -> nombre
<< left
<< setw(24)
<< this -> costo_piedra
<< left
<< setw(24)
<< this -> costo_madera
<< left
<< setw(24)
<< this -> costo_metal
<< left
<< setw(24)
<< this -> maximos_permitidos
<< endl;
}
// ------------------------------------------------------------------------------------------------------------
void Datos_edificio::guardar_informacion(fstream& archivo){
archivo
<< this -> nombre << ' '
<< this -> costo_piedra << ' '
<< this -> costo_madera << ' '
<< this -> costo_metal << ' '
<< this -> maximos_permitidos
<< endl;
}