mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
Moved sequences files to shared in order to allow the system to compile without the app sequence. Change-Id: Ia8349814a72776244acc41af964059f24e58cff0
21 lines
564 B
C++
21 lines
564 B
C++
#ifndef SEQUENCE_GRAPH_VIEW_H
|
|
#define SEQUENCE_GRAPH_VIEW_H
|
|
|
|
#include "../../shared/function_graph_view.h"
|
|
#include "../../shared/sequence_store.h"
|
|
|
|
namespace Sequence {
|
|
|
|
class GraphView : public Shared::FunctionGraphView {
|
|
public:
|
|
GraphView(Shared::SequenceStore * sequenceStore, Shared::InteractiveCurveViewRange * graphRange,
|
|
Shared::CurveViewCursor * cursor, Shared::BannerView * bannerView, Shared::CursorView * cursorView);
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
private:
|
|
Shared::SequenceStore * m_sequenceStore;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|