// File: widget1.h // // Declaration of Widget class #ifndef _widget_h #define _widget_h class Widget { public: Widget() ; // constructors Widget(int size) ; void display() ; // tell me about this widget static void report() ; // report about widget class private: static int count ; // keep track of number of widgets int size ; int serial ; } ; #endif