00001 /* this is a -*-C++-*- file 00002 * Copyright (C) 2005 Wim Dumon 00003 * 00004 * See the LICENSE file for terms of use. 00005 */ 00006 00007 #include <Wt/WContainerWidget> 00008 00009 using namespace Wt; 00010 00011 class HighScoresWidget: public WContainerWidget 00012 { 00013 public: 00014 HighScoresWidget(const std::wstring &user, 00015 WContainerWidget *parent = 0); 00016 void update(); 00017 00018 private: 00019 std::wstring User; 00020 };