blob: 6c118b1744d94b8f037d5bd1c796c4ee983cd5ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/*
* 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 <string>
#include <vector>
class CBookmark
{
public:
CBookmark();
void Reset();
/*! \brief returns true if this bookmark has been set.
\return true if totalTimeInSeconds is positive.
*/
bool IsSet() const;
/*! \brief returns true if this bookmark is part way through the video file
\return true if both totalTimeInSeconds and timeInSeconds are positive.
*/
bool IsPartWay() const;
/*! \brief returns true if this bookmark has a stored serialized player state
\return true if playerState is not empty.
*/
bool HasSavedPlayerState() const;
double timeInSeconds;
double totalTimeInSeconds;
long partNumber;
std::string thumbNailImage;
std::string playerState;
std::string player;
long seasonNumber;
long episodeNumber;
enum EType
{
STANDARD = 0,
RESUME = 1,
EPISODE = 2
} type;
};
typedef std::vector<CBookmark> VECBOOKMARKS;
|