Effects: Mark overridden methods accordingly

This commit is contained in:
FeRD (Frank Dana)
2020-04-15 21:44:17 -04:00
parent 166f69389b
commit f354850984
14 changed files with 42 additions and 42 deletions
+3 -3
View File
@@ -83,13 +83,13 @@ namespace openshot
/// @returns The modified openshot::Frame object
/// @param frame The frame object that needs the effect applied to it
/// @param frame_number The frame number (starting at 1) of the effect on the timeline.
std::shared_ptr<Frame> GetFrame(std::shared_ptr<Frame> frame, int64_t frame_number);
std::shared_ptr<Frame> GetFrame(std::shared_ptr<Frame> frame, int64_t frame_number) override;
/// Get and Set JSON methods
std::string Json() const override; ///< Generate JSON string of this object
void SetJson(const std::string value); ///< Load JSON string into this object
void SetJson(const std::string value) override; ///< Load JSON string into this object
Json::Value JsonValue() const override; ///< Generate Json::Value for this object
void SetJsonValue(const Json::Value root); ///< Load Json::Value into this object
void SetJsonValue(const Json::Value root) override; ///< Load Json::Value into this object
// Get all properties for a specific frame
std::string PropertiesJSON(int64_t requested_frame) const override;