-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean SWIG bindings + add doc #56
Conversation
* Can be used in bindings. * The methods is not called in the library.
221d439
to
f4da9e2
Compare
To keep symmetry with getFirstFilename method.
f4da9e2
to
341cec0
Compare
@@ -127,6 +129,7 @@ class Sequence | |||
|
|||
inline std::string getSuffix() const; | |||
|
|||
#ifndef SWIG |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you want to remove this function from the binding?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Found a way to integrate this method to the SWIG interfaces: 66e7002
Renamed operators in bindings.
The compilation will failed if SWIG has warnings when generate bindings.
Separate methods from attributes, even if both are public.
Instead of redefine them in Python, and ignore them in Java.
Instead of redefine them in Python, and ignore them in Java.
To understand that Time = Frame.
cb6ba7e
to
f523753
Compare
@fabiencastan Ready to be merged ;) |
* Instanciate tempate type "TimePair". * Updated SWIG type "Time" to match C++ type (fixed the following SWIG error: "cannot convert ‘std::pair<int, int>*’ to ‘std::pair<long int, long int>*’ in assignment").
* Need to appy typemaps to handle output parameters. * Need to define a custom typemap for std::string.
* Initialize the output arguments. * Needed when calling this method from a SWIG interface.
No description provided.