aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/Pokedex.h
diff options
context:
space:
mode:
Diffstat (limited to 'oop2eindopdr/Pokedex.h')
-rw-r--r--oop2eindopdr/Pokedex.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/oop2eindopdr/Pokedex.h b/oop2eindopdr/Pokedex.h
new file mode 100644
index 0000000..abe8bef
--- /dev/null
+++ b/oop2eindopdr/Pokedex.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include <string>
+#include <vector>
+
+#include "PokemonCard.h"
+
+class Pokedex {
+private:
+ std::vector<PokemonCard*> cards;
+ virtual void add_cards();
+
+public:
+ Pokedex();
+ virtual ~Pokedex();
+
+ /** @brief search cards that contain `query` in id field */
+ virtual PokemonCard* search_card_by_id(std::string query);
+};