TheChess
|
00001 /* 00002 * thechess, chess game web application written in C++ and based on Wt 00003 * Copyright (C) 2010 Boris Nagaev 00004 * 00005 * thechess is licensed under the GNU GPL Version 2. 00006 * Other versions of the GPL do not apply. 00007 * See the LICENSE file for terms of use. 00008 */ 00009 00010 #ifndef THECHESS_WIDGETS_GAMELISTWIDGET_HPP_ 00011 #define THECHESS_WIDGETS_GAMELISTWIDGET_HPP_ 00012 00013 #include <Wt/WCompositeWidget> 00014 00015 namespace Wt { 00016 class WContainerWidget; 00017 } 00018 00019 namespace thechess { 00020 namespace widgets { 00021 00022 class GameListWidgetImpl; 00023 00024 class GameListWidget : public Wt::WCompositeWidget { 00025 public: 00026 GameListWidget(Wt::WContainerWidget* parent=0); 00027 private: 00028 GameListWidgetImpl* impl_; 00029 }; 00030 00031 } 00032 } 00033 00034 #endif