#pragma once // ================================ // Class and Header File Inclusions // ================================ #include // Include Types.h in the stdafx.h file instead of here. // #include "Types.h" // ================= // ==================== using namespace std; // ==================== // ================= class classMenu { public: // ============ // Constructors // ================== classMenu( void ); // ================== // ========== // Destructor // ================ ~classMenu(void); // ================ // ========================== // Member-Function Prototypes // // NOTES: // // 1) The names for the accessor and mutator member-functions // will make use of the words Get and Set followed by the // appropriate member-variable identifier. // ========================================================= MenuChoices classMenu::Get( ); // Accessor void classMenu::Set( MenuChoices ); // Mutator void classMenu::Display( ); void classMenu::QueryUser( ); bool classMenu::Continue( ); void classMenu::ProcessCommand( ); // ========================================= private: // ================ // Member-Variables // // NOTES: // // 1) // ============================== MenuChoices userMenuSelection; // ============================== }; // Class classMenu // =====================