aboutsummaryrefslogtreecommitdiff
path: root/week12/Exercise3/TelecommunicationCompany.h
blob: 22ce731da593b8947039ecd717aa9cd713e3a731 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include "MobileDevice.h"

class TelecommunicationCompany {
	MobileDevice** devices;
	unsigned size;
	unsigned allocated;

	void resize();

	void free();

public:
	TelecommunicationCompany();
	~TelecommunicationCompany();
	TelecommunicationCompany(TelecommunicationCompany&& other);
	TelecommunicationCompany& operator=(TelecommunicationCompany&& other);
};