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_PLEASELOGINWIDGET_HPP_ 00011 #define THECHESS_WIDGETS_PLEASELOGINWIDGET_HPP_ 00012 00013 #include <Wt/WContainerWidget> 00014 00015 namespace thechess { 00016 namespace widgets { 00017 00018 class PleaseLoginWidget : public Wt::WContainerWidget { 00019 public: 00020 PleaseLoginWidget(Wt::WContainerWidget* parent=0); 00021 private: 00022 void login_(); 00023 void register_(); 00024 }; 00025 00026 } 00027 } 00028 00029 00030 #endif