~ubuntu-branches/ubuntu/wily/udj-desktop-client/wily

« back to all changes in this revision

Viewing changes to src/JSONHelper.hpp

  • Committer: Package Import Robot
  • Author(s): Nathan Handler
  • Date: 2012-11-14 15:29:07 UTC
  • mfrom: (1.2.1) (4.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20121114152907-8uj9bwcima77vu28
Tags: 0.6.3-1
* New upstream release
* debian/copyright: Add stanzas for new upstream files
* debian/rules:
  - Do not install ./usr/share/doc/udj/UDJ.1
  - Remove /usr/share/doc/udj directory if it is empty
* debian/control:
  - Bump Standards-Version to 3.9.4 (no changes)
  - Use my @debian.org address for the Maintainer field

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    const QString& streetAddress,
130
130
    const QString& city,
131
131
    const QString& state,
132
 
    const int& zipcode);
 
132
    const QString& zipcode);
133
133
 
134
134
  /**
135
135
   * \brief Gets the json needed for creating a player.
150
150
    const QString& streetAddress,
151
151
    const QString& city,
152
152
    const QString& state,
153
 
    const int& zipcode,
 
153
    const QString& zipcode,
154
154
    bool &success);
155
155
 
156
156
  /**
188
188
  static QVariantMap getActivePlaylistFromJSON(QNetworkReply *reply);
189
189
 
190
190
  /**
 
191
   * \brief Gets the list of participants from the JSON given in the server reply.
 
192
   *
 
193
   * \param reply The reply from the server.
 
194
   * \return A QVariantMap representing the participants given in the server reply.
 
195
   */
 
196
  static QVariantList getParticipantListFromJSON(QNetworkReply *reply);
 
197
 
 
198
  /**
191
199
   * \brief Gets the auth data from a server authentication reply.
192
200
   *
193
201
   * \param reply The reply from the server.