-
Notifications
You must be signed in to change notification settings - Fork 0
/
computadora.h
68 lines (52 loc) · 1.56 KB
/
computadora.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
#ifndef COMPUTADORA_H
#define COMPUTADORA_H
#include <iostream>
#include <iomanip>
using namespace std;
class Computadora {
private:
std::string sistemaOperativo;
int ram;
std::string nombreEquipo;
std::string procesador;
public:
Computadora();
Computadora(const std::string sistemaOperativo,
const int ram,
const std::string nombreEquipo,
const std::string procesador);
/* Getters */
std::string getSistemaOperativo();
int getRam();
std::string getNombreEquipo();
std::string getProcesador();
/* Setters */
void setSistemaOperativo(const std::string &so);
void setRam(const int &r);
void setNombreEquipo(const std::string &ne);
void setProcesador(const std::string &p);
/* Salida del Modelo */
friend ostream& operator<<(ostream &out, const Computadora &c) {
out << left;
out << setw(20) << c.sistemaOperativo;
out << setw(10) << c.ram;
out << setw(20) << c.nombreEquipo;
out << setw(16) << c.procesador;
out << endl;
return out;
}
/* Entrada del Modelo */
friend istream& operator>>(istream &in, Computadora & c) {
cout << "Sistema Operativo : ";
getline(cin, c.sistemaOperativo);
cout << "RAM (GB) : ";
cin >> c.ram;
cin.ignore();
cout << "Nombre del Equipo : ";
getline(cin, c.nombreEquipo);
cout << "Procesador : ";
getline(cin, c.procesador);
return in;
}
};
#endif