summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog2/Prakt3/Aufg1/Table.h
blob: 968cd266fe0fdad0c892e2382e4f12c97beff51d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _TABLE_H_
#define _TABLE_H_

#include <iostream>
#include <vector>
#include "Team.h"

using std::ostream;
using std::vector;

class Table
{
public:
	void setTeam(const Team&);
	void print(ostream&);
	void sort();
private:
	vector <Team> teams;
};

#endif //_TABLE_H_