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 "XBDateTime.h"
12 #include "utils/ScraperUrl.h"
20 // single episode information
32 CScraperUrl cScraperUrl
;
33 std::shared_ptr
<CFileItem
> item
;
34 EPISODE(int Season
= -1, int Episode
= -1, int Subepisode
= 0, bool Folder
= false)
38 iSubepisode
= Subepisode
;
41 bool operator==(const struct EPISODE
& rhs
) const
43 return (iSeason
== rhs
.iSeason
&&
44 iEpisode
== rhs
.iEpisode
&&
45 iSubepisode
== rhs
.iSubepisode
);
49 typedef std::vector
<EPISODE
> EPISODELIST
;