20.5 Nested Classes (cont.)

Or, include the entire definition inside the outer class:

class List
{
   . . .
   class Iterator
   {
   public:
      Iterator();
      string get() const;
      . . .
   };
   . . .
};

prev |top |next