summaryrefslogtreecommitdiff
path: root/kurator/src/Summary.h
blob: 809b034cc614e158c33470b5b14cf3e13f9825ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once

#include <memory>

#include <kurator/stats/EventLog.h>

#include "Session.h"
#include "Scene.h"


namespace kurator
{


class Summary : public Scene
{
public:
	Summary(std::shared_ptr<Session> _session, stats::EventLog _events);
	void update() override;
	void draw() const override;
private:
	std::shared_ptr<Session> session;
	stats::EventLog events;
};


}  // namespace kurator