Add titles for transponder apps.

This commit is contained in:
Jared Boone 2016-01-26 13:08:46 -08:00
parent 7fe8288737
commit bd829d7d85
3 changed files with 6 additions and 0 deletions

View File

@ -142,6 +142,8 @@ public:
void focus() override;
std::string title() const override { return "AIS"; };
private:
AISRecentEntries recent;
AISLogger logger;

View File

@ -83,6 +83,8 @@ public:
// TODO: Add flag to View that specifies view does not need to be cleared before painting.
void paint(Painter&) override { };
std::string title() const override { return "ERT"; };
private:
ERTRecentEntries recent;
ERTLogger logger;

View File

@ -207,6 +207,8 @@ public:
// TODO: Add flag to View that specifies view does not need to be cleared before painting.
void paint(Painter&) override { };
std::string title() const override { return "TPMS"; };
private:
TPMSRecentEntries recent;
TPMSLogger logger;