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.
11 #include "utils/Job.h"
15 class CAutorunMediaJob
: public CJob
18 CAutorunMediaJob(const std::string
&label
, const std::string
&path
);
20 bool DoWork() override
;
22 const char *GetWindowString(int selection
);
24 std::string m_path
, m_label
;