Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C++ Objects in Tcl/Tk

Status
Not open for further replies.

usulsn

Programmer
May 10, 2001
2
DE
Is there any possibility to use a reference to a C++ Object to invoke member functions of this Object in Tcl?
Or to chane member variables???

passing C++ Object reference to tcl ????

class Label
{
int member;

Label(int x) //Constructor
~Label() //Destruktor
doSthing(int d) //member function
}
How to invoke doSthing ?????
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top