-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeam.hpp
39 lines (30 loc) · 946 Bytes
/
Team.hpp
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
/*********************************************************************
** Author: Jordan Hamilton
** Date: 02/14/2018
** Description: Specification file for the Team class.
*********************************************************************/
#ifndef TEAM_HPP
#define TEAM_HPP
#include "Player.hpp"
class Team {
private:
Player pointGuard;
Player shootingGuard;
Player smallForward;
Player powerForward;
Player center;
public:
Team(Player pgIn, Player sgIn, Player sfIn, Player pfIn, Player cIn);
void setPointGuard(Player pointGuardIn);
Player getPointGuard();
void setShootingGuard(Player shootingGuardIn);
Player getShootingGuard();
void setSmallForward(Player smallForwardIn);
Player getSmallForward();
void setPowerForward(Player powerForwardIn);
Player getPowerForward();
void setCenter(Player centerIn);
Player getCenter();
int totalPoints();
};
#endif