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.
20 /*! \brief returns true if this bookmark has been set.
21 \return true if totalTimeInSeconds is positive.
25 /*! \brief returns true if this bookmark is part way through the video file
26 \return true if both totalTimeInSeconds and timeInSeconds are positive.
28 bool IsPartWay() const;
30 /*! \brief returns true if this bookmark has a stored serialized player state
31 \return true if playerState is not empty.
33 bool HasSavedPlayerState() const;
36 double totalTimeInSeconds
;
38 std::string thumbNailImage
;
39 std::string playerState
;
52 typedef std::vector
<CBookmark
> VECBOOKMARKS
;