-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBPMenu.cpp
31 lines (26 loc) · 881 Bytes
/
BPMenu.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/************************************************************************
Class Name: BPMenu
Author: Howard Chen
Last Modified: 3-17-2017
Description: Menu for the Backpack class. Not really needed, but it's
work to eliminate it now. I'd rather not introduce bugs.
************************************************************************/
#include "BPMenu.hpp"
/**************************
Description: Default constructs a BPMenu, which is basically a Menu.
Arguments: None.
Precondition: None.
Postcondition: BPMenu is constructed.
**************************/
BPMenu::BPMenu() :
Menu() {
}
/**************************
Description: Debugging function. Logs BPMenu choices to console.
Arguments: None.
Precondition: None.
Postcondition: Prints BPMenu choices to console.
**************************/
void BPMenu::log(){
this->display();
}