Skip to content
Snippets Groups Projects
Commit 01778ec2 authored by Julien Michel's avatar Julien Michel
Browse files

ENH: Exposing new methods in SWIG

parent 3a3bcf73
No related branches found
No related tags found
No related merge requests found
......@@ -173,6 +173,13 @@ public:
void AddDocTag( const std::string & tag );
std::vector<std::string> GetDocTags();
unsigned int GetNumberOfExamples();
std::string GetExampleComment(unsigned int id);
unsigned int GetExampleNumberOfParameters(unsigned int id);
std::string GetExampleParameterKey(unsigned int exId, unsigned int paramId);
std::string GetExampleParameterValue(unsigned int exId, unsigned int paramId);
void SetDocExampleParameterValue( const std::string key, const std::string value, unsigned int exId=0 );
void SetExampleComment( const std::string & comm, unsigned int i );
unsigned int AddExample( const std::string & comm="" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment