aboutsummaryrefslogtreecommitdiff
path: root/People.h
blob: aecf120661b26c7bd88831c0c55e81a7903a5e03 (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;
};