aboutsummaryrefslogtreecommitdiff
path: root/People.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 15:21:23 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-13 15:21:23 +0200
commit108a6216a987edaa68c8739468069f4e1fc6f60c (patch)
tree8f074e59a8a4a7a365f275373d86c693f60b612b /People.h
parent165c1ae6e4a4eea35d7ea2f2a6518ff36cf0112f (diff)
more WIP
Diffstat (limited to 'People.h')
-rw-r--r--People.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/People.h b/People.h
index ea5dcf4..0b7277b 100644
--- a/People.h
+++ b/People.h
@@ -6,6 +6,8 @@
#include "Artist.h"
#include "ArtistData.h"
+class Museum;
+
class People {
public:
People() = default;
@@ -18,7 +20,7 @@ public:
Artist & get_artist(size_t index);
size_t artists_size();
- void update();
+ void update(Museum & m);
private:
std::vector<Artist *> artists;