~saiarcot895/libopenshot/qt-json

« back to all changes in this revision

Viewing changes to include/effects/ChromaKey.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
                /// Get and Set JSON methods
89
89
                string Json(); ///< Generate JSON string of this object
90
90
                void SetJson(string value) throw(InvalidJSON); ///< Load JSON string into this object
91
 
                Json::Value JsonValue(); ///< Generate Json::JsonValue for this object
92
 
                void SetJsonValue(Json::Value root); ///< Load Json::JsonValue into this object
 
91
                QJsonObject JsonValue(); ///< Generate QJsonObject for this object
 
92
                void SetJsonValue(QJsonObject root); ///< Load QJsonObject into this object
93
93
 
94
94
                // Get all properties for a specific frame
95
95
                string PropertiesJSON(long int requested_frame);