Code Cleanup

- Migrated from Context::message to Context::footnote.  This more clear
  to the developer where the messages will be shown.
This commit is contained in:
Paul Beckingham
2009-06-25 15:00:32 -04:00
parent 104ad5a5b5
commit c5d7b41d98
3 changed files with 9 additions and 26 deletions

View File

@@ -55,9 +55,8 @@ public:
int getWidth (); // determine terminal width
void header (const std::string&); // Header sink
void message (const std::string&); // Message sink
void footnote (const std::string&); // Footnote sink
void header (const std::string&); // Header message sink
void footnote (const std::string&); // Footnote message sink
void debug (const std::string&); // Debug message sink
void clearMessages ();
@@ -90,7 +89,6 @@ public:
private:
std::vector <std::string> headers;
std::vector <std::string> messages;
std::vector <std::string> footnotes;
std::vector <std::string> debugMessages;
bool inShadow;