Numworks Epsilon  1.4.1
Graphing Calculator Operating System
banner_view.h
Go to the documentation of this file.
1 #ifndef SEQUENCE_BANNER_VIEW_H
2 #define SEQUENCE_BANNER_VIEW_H
3 
4 #include <escher.h>
5 #include "../../shared/banner_view.h"
6 
7 namespace Sequence {
8 
9 class BannerView : public Shared::BannerView {
10 public:
11  BannerView();
12 private:
13  int numberOfSubviews() const override;
14  TextView * textViewAtIndex(int i) const override;
15  BufferTextView m_abscissaView;
16  BufferTextView m_sequenceView;
17 };
18 
19 }
20 
21 #endif
Definition: app.cpp:7