Add AISAppView.

This commit is contained in:
Jared Boone 2016-01-14 09:30:23 -08:00
parent fc16bc7867
commit 1f2b28b2b8
3 changed files with 22 additions and 1 deletions

View file

@ -134,6 +134,16 @@ private:
void advance(const int32_t amount);
};
class AISAppView : public View {
public:
AISAppView();
void set_parent_rect(const Rect new_parent_rect) override;
private:
AISRecentEntriesView recent_entries_view;
};
} /* namespace ui */
#endif/*__AIS_APP_H__*/