<div dir="ltr"><div><div><div><div>This is my class for which i create .sip file and make a sip wrapper. Following are my word.h an word.sip files respectively.<br><br></div><b>word.h</b><br><br><span style="color:rgb(255,0,0)">class Word{<br>
<br>public:<br>    int integer;<br>    void set_int(int a);<br>    int get_int();<br><br>};</span><br><br></div><b>word.sip</b><br><br><span style="color:rgb(255,0,0)">%Module word <br><br>class Word<br>{<br><br>%TypeHeaderCode<br>
#include <word.h><br>%End<br><br>public:<br>    int integer;<br>    void set_int(int a);<br>    int get_int();<br>};</span><br><br></div>Now if I want to inherit word class from some parent class, I edited the word.h file as shown below, also showing the parent class for better understanding.<br>
<br></div><b>word.h (edited)</b><br><div><div><div><div><div><span style="color:rgb(255,0,0)"><br>#include "parent.h"<br><br>class Word : public Parent{<br><br>public:<br>    int integer;<br>    void set_int(int a);<br>
    int get_int();<br>    <br>};</span><br><br></div><div><b>parent.h</b><br><span style="color:rgb(255,0,0)"><br>class Parent<br>{<br><br>public:<br>    int increment_int(int b);<br><br>};</span><br><br></div><div>Now how should I make sip understand this? should I make parent.sip too? If yes then how to add it in the wrapper??<br>
<br></div><div>Looking forward for your reply..<br><br></div><div>Sincere Regards,<br></div><div>Amey Patil<br></div></div></div></div></div></div>