gpg::ScorePage::Entry

#include <score_page.h>

创建一个计分页面条目类的类。

摘要

构造函数和析构函数

Entry()
Entry(std::shared_ptr< const EntryImpl > impl)
显式构造函数。
Entry(const Entry & copy_from)
用于将现有条目复制到新条目中的复制构造函数。
Entry(Entry && move_from)
用于将现有条目移动到新条目中的构造函数。
~Entry()

公共函数

LastModified() const 已弃用。 首选 LastModifiedTime。
LastModifiedTime() const
返回条目上次修改的时间(以自 Unix 纪元以来的毫秒数表示)。
PlayerId() const
const std::string &
返回玩家 ID。
Score() const
const gpg::Score &
返回玩家得分。
Valid() const
bool
当返回的条目填充了数据并附带成功的响应状态时返回 true;对于未填充的用户创建的条目或对于附带不成功响应状态的填充条目返回 false。
operator=(const Entry & copy_from)
Entry &
赋值运算符,用于将此条目的值从另一个条目赋值。
operator=(Entry && move_from)
Entry &
赋值运算符,用于将此条目的值从另一个条目赋值。

公共函数

Entry

 Entry()

Entry

 Entry(
  std::shared_ptr< const EntryImpl > impl
)

显式构造函数。

Entry

 Entry(
  const Entry & copy_from
)

用于将现有条目复制到新条目中的复制构造函数。

Entry

 Entry(
  Entry && move_from
)

用于将现有条目移动到新条目中的构造函数。

右值引用版本。

LastModified

Timestamp LastModified() const 

已弃用。 首选 LastModifiedTime。

LastModifiedTime

Timestamp LastModifiedTime() const 

返回条目上次修改的时间(以自 Unix 纪元以来的毫秒数表示)。

PlayerId

const std::string & PlayerId() const 

返回玩家 ID。

Score

const gpg::Score & Score() const 

返回玩家得分。

Valid

bool Valid() const 

当返回的条目填充了数据并附带成功的响应状态时返回 true;对于未填充的用户创建的条目或对于附带不成功响应状态的填充条目返回 false。

对于此条目的 getter 函数(PlayerId、Score 等)可用,此值必须为 true。

operator=

Entry & operator=(
  const Entry & copy_from
)

赋值运算符,用于将此条目的值从另一个条目赋值。

operator=

Entry & operator=(
  Entry && move_from
)

赋值运算符,用于将此条目的值从另一个条目赋值。

右值引用版本。

~Entry

 ~Entry()