Wt examples
3.2.1
|
00001 // This may look like C code, but it's really -*- C++ -*- 00002 /* 00003 * Copyright (C) 2011 Emweb bvba, Heverlee, Belgium 00004 * 00005 * See the LICENSE file for terms of use. 00006 */ 00007 00008 #ifndef HIGH_SCORES_WIDGET_H_ 00009 #define HIGH_SCORES_WIDGET_H_ 00010 00011 #include <Wt/WContainerWidget> 00012 00013 class Session; 00014 00015 class HighScoresWidget: public Wt::WContainerWidget 00016 { 00017 public: 00018 HighScoresWidget(Session *session, Wt::WContainerWidget *parent = 0); 00019 void update(); 00020 00021 private: 00022 Session *session_; 00023 }; 00024 00025 #endif //HIGH_SCORES_WIDGET_H_