/* * Cody Cook * Project 2 * SNHU * 2023/04/02 */ #ifndef MENU_H #define MENU_H #include #include #include #pragma once void surroundText(std::string t_text, int t_lineLength, char t_dataInputLine, bool t_bothTopBottom); void separator(int t_lineLength, char t_dataInputLine, bool t_emptyLine = true); void printDetails(unsigned int t_year, double t_yearEndBalance, double t_interestEarned); void menu(); void printHeader(); #endif