#include <QJsonDocument> #include <QJsonObject> #include "Session.h" namespace hws { Session::Session() : mUrl(), mUser(), mTicket() { } Session::Session(const Session & s) : mUrl(s.mUrl), mUser(s.mUser), mTicket(s.mTicket) { } Session::~Session() { } Session& Session::operator=(const Session & s) { setUrl(s.url()); setUser(s.user()); setP4Ticket(s.p4Ticket()); return *this; } const QUrl& Session::url() const { return mUrl; } void Session::setUrl(const QUrl & url) { mUrl = url; } const QString& Session::user() const { return mUser; } void Session::setUser(const QString & user) { mUser = user; } const QString& Session::p4Ticket() const { return mTicket; } void Session::setP4Ticket(const QString & ticket) { mTicket = ticket; } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15688 | Doug Scheirer |
Populate -o //guest/perforce_software/helix-web-services/... //guest/doug_scheirer/helix-web-services/.... |
||
//guest/perforce_software/helix-web-services/main/build/helix_web_services_client_qt/hws/Session.cpp | |||||
#2 | 15448 | tjuricek |
Qt SDK revision: remove higher-level objects from the SDK. It's likely we could add higher-level objects that adapt the executeMethodDone and convert the variant maps to something, well, typed and easier to use. That's not in my current scope of work, however. |
||
#1 | 14050 | tjuricek | Prep versioned release directory for inclusion into Helix Sync app. |