#ifndef LEC12_CODE_PRINTER_H_ #define LEC12_CODE_PRINTER_H_ #include // This class is useful when you are exploring the behavior of STL // containers. The class gives each instance that is manufactured // using the default constructor a unique ID and a current value. The // current value is initialized to be the unique ID. // // Whenever an object is manufactured using the copy constructor, its // value is copied from the argument. Similarly, whenever an object // is the target of an assignment operator, the its value is copied // from the source. // // Finally, objects print messages out whenever important events // happen, including default construction, copy construction, // destruction, assignment, and "less than" operator invocation. // (Less than is used as a comparator for things like sorting or // inserting into the right sorted spot in a map.) class Printer { public: // Constructors. Printer(); ~Printer(); Printer(const Printer &rhs); // Assignment operator. Printer &operator=(const Printer &rhs); // Less-than comparison operator. bool operator<(const Printer &rhs) const; // << operator friend std::ostream &operator<<(std::ostream &out, const Printer &rhs); private: // Return "(id_,value_)" as a string std::string PrintID(void) const; // This static (class member) tracks the next id_ to hand out. static unsigned int nextid_; unsigned int id_; unsigned int value_; }; #endif // LEC12_CODE_PRINTER_H_