NList ??

hi!

I am new to C++

I would appreciate if somebody can explain me this line of code:

Partition::Partition (char *nm, FILE *f) : NList (nm)

regards,
ajit
This is a member initialisation list. It tells that the NList is initialised from nm.
NList may be a superclass or a member of this class (don't know, because you haven't posted the rest of the code).
Topic archived. No new replies allowed.