Skip to content

Commit

Permalink
Give SWIG's Ruby code a namespace hint
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Apr 11, 2021
1 parent f5d94d3 commit f26b4bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/EffectBase.h
Expand Up @@ -80,7 +80,7 @@ namespace openshot
EffectBase* parentEffect;

/// Map of Tracked Object's by their indices (used by Effects that track objects on clips)
std::map<int, std::shared_ptr<TrackedObjectBase> > trackedObjects;
std::map<int, std::shared_ptr<openshot::TrackedObjectBase> > trackedObjects;

/// Information about the current effect
EffectInfoStruct info;
Expand All @@ -100,7 +100,7 @@ namespace openshot

/// Set parent clip object of this effect
void ParentClip(openshot::ClipBase* new_clip);

/// Set the parent effect from which this properties will be set to
void SetParentEffect(std::string parentEffect_id);

Expand All @@ -122,7 +122,7 @@ namespace openshot
virtual void SetJson(int64_t requested_frame, const std::string value) {
return;
};

Json::Value JsonInfo() const; ///< Generate JSON object of meta data / info

/// Get the order that this effect should be executed.
Expand Down

0 comments on commit f26b4bf

Please sign in to comment.