-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmpresaDeMudanza.cpp
43 lines (40 loc) · 1.17 KB
/
EmpresaDeMudanza.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
#include "EmpresaDeMudanza.h"
#include "camion.h"
#include <iostream>
#include <vector>
using std::string;
EmpresaDeMudanza::EmpresaDeMudanza(string Nombre, string Int) {
this->Nombre = Nombre;
this->Int = Int;
}
int EmpresaDeMudanza::cargarLosCamiones(vector<int> &objt) {
int total = 0;
for (int i = 0; i < FlotaDeCamiones.size(); i++) {
for(int j = 0; j < objt.size(); j++){
if(FlotaDeCamiones.at(i).cargarUnObjeto(objt[j])){
total += objt[j];
}
}
}
if (total==0){
cout << "no hay camiones para cargar" << endl;
}
return total;
}
string EmpresaDeMudanza::getNombreEmpresa() { return Nombre; }
void EmpresaDeMudanza::comprarCamion(string placa, int peso) {
Camion nuevoCamion(placa, peso);
FlotaDeCamiones.push_back(nuevoCamion);
}
int EmpresaDeMudanza::cargaDeCamion(string placa){
for (int i = 0; i < FlotaDeCamiones.size(); i++){
if(FlotaDeCamiones.at(i).cualEsLaPlaca() == placa){
return FlotaDeCamiones.at(i).cualEsElPesoTotalCargado();
}
}
cout << "No hay un camion con la placa especificada" << endl;
return 0;
}
vector <Camion> EmpresaDeMudanza::getFlotaDeCamiones(){
return FlotaDeCamiones;
}