Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!usc!wuarchive!uunet!stanford.edu!MS.SECS.CSUN.EDU!mrs From: mrs@MS.SECS.CSUN.EDU (Mike Stump) Newsgroups: comp.windows.interviews Subject: Where is UList::operator()? Message-ID: <9105080027.AA25713@ms.secs.csun.edu> Date: 8 May 91 00:27:34 GMT Sender: news@shelby.stanford.edu (USENET News System) Organization: Internet-USENET Gateway at Stanford University Lines: 16 In ulist.h (of Unidraw) I find: class UList { ... void *operator()(); ... }; in grcomp.cc I find: GraphicComp* GraphicComps::Comp (UList* r) { return (GraphicComp*) (*r)(); } This is all ok (cept maybe choice of names) but where is the definition anyway? Could not seem to find it... I searched ulist.cc and no luck, I grepped for it in the source dir, but could not find it. My compiler can, but it won't tell me (debugging information) where!