# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 15423 | tjuricek |
Revised HWS Qt API. This is a major revision of the API, which removes most of the "typed" data, replacing it with a more generic "executeMethodDone" callback. The main benefit here is to allow the API to interop with different versions of p4d, and not restrict the methods it can call. We may add more helpers in the future. |
||
#1 | 14025 | tjuricek |
Revise Qt SDK to a single 'helix_web_services_client' project. Most references to "Phoenix" have now been removed. Additionally, this is more similar to the other platform client SDKs in Ruby and JavaScript. Documentation via Doxygen is now available, and will be how much of the SDK reference should occur. |
||
//guest/perforce_software/helix-web-services/main/qt/p4_phoenix_services_client/test/PhoenixProjectTests.cpp | |||||
#3 | 13507 | tjuricek | More C++03 conversion of files that, for some reason, didn't get recompiled in my IDE. | ||
#2 | 13506 | tjuricek |
Change to a C++03 build. Major changes: 1. QSharedPointer::create(...) is much more restricted than in C++11, so just use the .reset() method unless you're passing in a single const reference argument to the constructor. 2. Using Qt's foreach. 3. Replace lambdas with simpler helper methods. This seems to work, but we may have subtle memory issues I'm not 100% on top of yet. |
||
#1 | 13448 | tjuricek |
Add unit test for PhoenixProject class to verify techniques at manipulating and serializing the model to and from JSON. Use phoenixProjectFromJson() to load the PhoenixProject directly now. |