summaryrefslogtreecommitdiffstats
path: root/xbmc/pictures/PictureInfoLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/pictures/PictureInfoLoader.h')
-rw-r--r--xbmc/pictures/PictureInfoLoader.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/xbmc/pictures/PictureInfoLoader.h b/xbmc/pictures/PictureInfoLoader.h
new file mode 100644
index 0000000..0171fcb
--- /dev/null
+++ b/xbmc/pictures/PictureInfoLoader.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#pragma once
+
+#include "BackgroundInfoLoader.h"
+
+#include <string>
+
+class CPictureInfoLoader : public CBackgroundInfoLoader
+{
+public:
+ CPictureInfoLoader();
+ ~CPictureInfoLoader() override;
+
+ void UseCacheOnHD(const std::string& strFileName);
+ bool LoadItem(CFileItem* pItem) override;
+ bool LoadItemCached(CFileItem* pItem) override;
+ bool LoadItemLookup(CFileItem* pItem) override;
+
+protected:
+ void OnLoaderStart() override;
+ void OnLoaderFinish() override;
+
+ CFileItemList* m_mapFileItems;
+ unsigned int m_tagReads;
+ bool m_loadTags;
+};
+