how to make wrapper from class

Blitz3D Forums/Blitz3D Userlibs/how to make wrapper from class

bulat(Posted 2008) [#1]
how to make wrapper from class at c ++.
example:

class myfunction{
public:
myfunction(Int x);
~myfunction();

void getx(p* obj);
void deleteX(p* obj);

..............................//

}