Wt examples  4.10.3
Loading...
Searching...
No Matches
HighScoresWidget.h
Go to the documentation of this file.
1// This may look like C code, but it's really -*- C++ -*-
2/*
3 * Copyright (C) 2011 Emweb bv, Herent, Belgium
4 *
5 * See the LICENSE file for terms of use.
6 */
7
8#ifndef HIGH_SCORES_WIDGET_H_
9#define HIGH_SCORES_WIDGET_H_
10
11#include <Wt/WContainerWidget.h>
12
13class Session;
14
15class HighScoresWidget : public Wt::WContainerWidget
16{
17public:
18 explicit HighScoresWidget(Session *session);
19 void update();
20
21private:
22 Session *session_ = nullptr;
23};
24
25#endif //HIGH_SCORES_WIDGET_H_