-
Notifications
You must be signed in to change notification settings - Fork 0
/
Carrera.cpp
46 lines (45 loc) · 846 Bytes
/
Carrera.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
#include "Carrera.h"
#include <iostream>
#include <vector>
Carrera::Carrera(){
actualvac=0; //Constructor
}
//Funciones para obtener
int Carrera::GetVacantes(){
return vacantes;
}
int Carrera::GetActVacantes(){
return actualvac;
}
Postulante Carrera::GetPostulantes(int i){
return P[i];
}
float Carrera::GetUltimo(){
return ultimo;
}
int Carrera::GetTipo(){
return tipo;
}
//Funciones para agregar
void Carrera::SetVacantes(int v){
vacantes = v;
}
void Carrera::SetActVacantes(int v){
actualvac=v;
}
void Carrera::SetPostulantes(int i, int j){
std::swap(P[i],P[j]);
}
void Carrera::llenarPost(Postulante B){
P.push_back(B);
}
void Carrera::SetUltimo(float U){
ultimo = U;
}
void Carrera::SetTipo(int tip){
tipo=tip;
}
void Carrera::Reemplazo(Postulante A){
P.pop_back();
P.push_back(A);
}