Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!radar!cadillac!Pkg.Mcc.COM!steve From: steve@Pkg.Mcc.COM (Steve Madere) Newsgroups: comp.lang.c++ Subject: Pointers to overloaded functions Message-ID: <1990Aug27.155621@Pkg.Mcc.COM> Date: 27 Aug 90 20:56:21 GMT Sender: news@cadillac.CAD.MCC.COM Reply-To: steve@Pkg.Mcc.COM (Steve Madere) Lines: 18 I need a way to get a pointer to one of a set of overloaded functions. I need to specify in the source code exactly which version of the function I need. eg: void print(char*); void print(int); void print(float); printmythingy(v,print,ser1); How do I specify that the print function that I want is the one that goes with the char* argument? Steve Madere