[comp.windows.interviews] Where is UList::operator

mrs@MS.SECS.CSUN.EDU (Mike Stump) (05/08/91)

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!