[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / storage / AutorunMediaJob.h
blob52524f1c831b85125445c8eccff4391897f04d6a
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include "utils/Job.h"
13 #include <string>
15 class CAutorunMediaJob : public CJob
17 public:
18 CAutorunMediaJob(const std::string &label, const std::string &path);
20 bool DoWork() override;
21 private:
22 const char *GetWindowString(int selection);
24 std::string m_path, m_label;