Esempio n. 1
0
IServerInfoSPtr SsdbDriver::makeServerInfoFromString(const std::string& val) {
  IServerInfoSPtr res(makeSsdbServerInfo(val));
  return res;
}
Esempio n. 2
0
ServerInfo* makeSsdbServerInfo(FastoObject* root) {
  std::string content = common::ConvertToString(root);
  return makeSsdbServerInfo(content);
}