~saiarcot895/libopenshot/qt-json

« back to all changes in this revision

Viewing changes to include/Profiles.h

  • Committer: Saikrishna Arcot
  • Date: 2015-10-04 15:18:06 UTC
  • Revision ID: saiarcot895@gmail.com-20151004151806-ffpsybuaqc2yz09l
Switch from JsonCPP to Qt JSON.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
 
89
89
                /// Get and Set JSON methods
90
90
                string Json(); ///< Generate JSON string of this object
91
 
                Json::Value JsonValue(); ///< Generate Json::JsonValue for this object
 
91
                QJsonObject JsonValue(); ///< Generate QJsonObject for this object
92
92
                void SetJson(string value) throw(InvalidJSON); ///< Load JSON string into this object
93
 
                void SetJsonValue(Json::Value root); ///< Load Json::JsonValue into this object
 
93
                void SetJsonValue(const QJsonObject root); ///< Load QJsonObject into this object
94
94
        };
95
95
 
96
96
}