-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFootballClub.cpp
51 lines (41 loc) · 1.31 KB
/
FootballClub.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
//
// Created by maxim on 26.04.2020.
//
#include "FootballClub.h"
FootballClub::FootballClub(cr_str name, cr_str ground, cr_str league, std::size_t capacity) {
_name = name;
_ground = ground;
_league = league;
_capacity = capacity;
}
std::string FootballClub::get_name() const {
return _name;
}
std::string FootballClub::get_ground() const {
return _ground;
}
std::string FootballClub::get_league() const {
return _league;
}
std::size_t FootballClub::get_capacity() const {
return _capacity;
}
std::list<FootballClub::Footballer> FootballClub::get_footballers() const {
return _footballers;
}
bool FootballClub::add_footballer(cr_str name, u_short number, cr_str position) {
if(std::find(_footballers.cbegin(), _footballers.cend(),
Footballer(name, this, number, position)) != _footballers.cend())
return false;
_footballers.emplace_back(name, this, number, position);
return true;
}
bool FootballClub::erase_footballer(u_short number) {
auto it = std::find_if(_footballers.cbegin(), _footballers.cend(),
[&number](const Footballer &f){
return f.get_number() == number;
});
if(it == _footballers.cend()) return false;
_footballers.erase(it);
return true;
}