// // Interface File for Class_Name // // Author: Your_Name(s) // with assistance from: // // Creation Date: Creation_Date // modified: Modification_Date reason // modified: Modification_Date reason // // Description of the role or purpose of objects of this class goes here // // Constructors: // constructor declaration 1 // Description of constructor, e.g., copy constructor // // constructor declaration 1 // Description of constructor, e.g., copy constructor // // Public Member Functions: // // declaration 1 // pre-condition: // post-condition: // Description of what the function does, what input it expects, // what output it generates, what it returns. // // declaration 2 // pre-condition: // post-condition: // Description of what the function does, what input it expects, // what output it generates, what it returns. // #ifndef CLASSNAME_H #define CLASSNAME_H // include files go here // class declaration goes here class Class_Name { public: // constructors // public member functions private: // private member functions // private data members }; // declarations of associated free functions go here (if there are any) #endif