CmdInfo: Migrated from ViewText to Table

This commit is contained in:
Paul Beckingham
2016-12-17 17:30:44 -05:00
parent 74e50359b5
commit 2c07858bd3
2 changed files with 24 additions and 16 deletions

View File

@@ -29,7 +29,7 @@
#include <string>
#include <Command.h>
#include <ViewText.h>
#include <Table.h>
class CmdInfo : public Command
{
@@ -38,7 +38,7 @@ public:
int execute (std::string&);
private:
void urgencyTerm (ViewText&, const std::string&, float, float) const;
void urgencyTerm (Table&, const std::string&, float, float) const;
};
#endif