Changeset da09909 for molecuilder/src/Menu/TextMenu.cpp
- Timestamp:
- Dec 16, 2009, 2:40:09 PM (16 years ago)
- Children:
- 38546d
- Parents:
- c2c893
- File:
-
- 1 edited
-
molecuilder/src/Menu/TextMenu.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Menu/TextMenu.cpp
rc2c893 rda09909 9 9 #include <iostream> 10 10 #include <cmath> 11 #include "defs.hpp"12 11 #include "Menu/TextMenu.hpp" 13 12 #include "Menu/MenuItem.hpp" 14 13 14 15 /** 16 * produce a text menu with a given title. 17 * The text will later be displayed using the stream passed to the constructor. 18 */ 15 19 TextMenu::TextMenu(ostream& _outputter, string _title, char _spacer,int _length) : 16 20 outputter(_outputter), … … 18 22 spacer(_spacer), 19 23 length(_length), 20 quit(false)21 {22 }23 24 TextMenu::TextMenu(ostream& _outputter, string _title) :25 outputter(_outputter),26 title(_title),27 spacer(STD_MENU_TITLE_SPACER),28 length(STD_MENU_LENGTH),29 24 quit(false) 30 25 {
Note:
See TracChangeset
for help on using the changeset viewer.
