CmdInfo: Migrated from ViewText to Table

This commit is contained in:
Paul Beckingham 2016-12-17 17:30:44 -05:00
parent dc851fe4b2
commit 79c1a94289
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