コード例 #1
0
ファイル: RegisterUserQuery.cpp プロジェクト: 4ukuta/core
void RegisterUserQuery::processResponse(const QByteArray &data)
{
  //#ifndef Q_OS_SYMBIAN
  RegisterUserResponseJSON response;
  response.parseJson(data);
  m_confirmUrl = response.getConfirmUrl();
  //#endif
}
コード例 #2
0
ファイル: RegisterUserQuery.cpp プロジェクト: OSLL/geo2tag
void RegisterUserQuery::processReply(QNetworkReply *reply)
{
  //#ifndef Q_OS_SYMBIAN
  RegisterUserResponseJSON response;
  response.parseJson(reply->readAll());
  if (response.getErrno() == SUCCESS)
  {
    m_confirmUrl = response.getConfirmUrl();
    syslog(LOG_INFO,"!!connected!");
    qDebug("!!connected!");
    Q_EMIT connected();
  }
  else
  {
    qDebug("!!errorOccured!");
    Q_EMIT errorOccured(response.getErrno());
  }
  //#endif
}