aboutsummaryrefslogtreecommitdiff
path: root/oop2eindopdr/Pokedex.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-12-24 22:03:59 +0100
committerlonkaars <loek@pipeframe.xyz>2022-12-24 22:03:59 +0100
commit2b1145fb0aec3feb9cbab2df9be57ab43fc7f975 (patch)
treef6024cb81077756f5a51d1f70c34420e3c22d249 /oop2eindopdr/Pokedex.h
parent21b9726e8a371c193ab326259d22dd4cd0b69898 (diff)
WIP download manager
Diffstat (limited to 'oop2eindopdr/Pokedex.h')
-rw-r--r--oop2eindopdr/Pokedex.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/oop2eindopdr/Pokedex.h b/oop2eindopdr/Pokedex.h
index 28d0d31..41cbf7c 100644
--- a/oop2eindopdr/Pokedex.h
+++ b/oop2eindopdr/Pokedex.h
@@ -7,6 +7,7 @@
class PokemonCard;
class PokemonTCGAPIClient;
+class DownloadManager;
/** @brief user pokedex class, handles caching and api access silently */
class Pokedex {
@@ -24,6 +25,7 @@ private:
/** @brief cache connection */
CacheManager* cache = nullptr;
PokemonTCGAPIClient* api = nullptr;
+ DownloadManager* download_manager = nullptr;
friend class PokemonCard;