Пример #1
0
 // TODO(sfiera): give CString a move constructor so we don't need to define this.
 AntaresScenarioListEntry(AntaresScenarioListEntry&& other):
     identifier(String(utf8::decode(other.identifier.data()))),
     title(String(utf8::decode(other.title.data()))),
     download_url(String(utf8::decode(other.download_url.data()))),
     author(String(utf8::decode(other.author.data()))),
     author_url(String(utf8::decode(other.author_url.data()))),
     version_string(other.version_string),
     version(String(utf8::decode(other.version.data()))) { }