aboutsummaryrefslogtreecommitdiff
path: root/People.h
blob: e4490f744ca7be6c18962eef8f81dab2167965f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <memory>
#include <vector>

#include "Artist.h"
#include "ArtistData.h"

class People {
public:
	void add_artist(ArtistData data);

private:
	std::vector<Artist> artists;
};