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_INTERVAL_WIDGET_HPP_ 00011 #define THECHESS_WIDGETS_INTERVAL_WIDGET_HPP_ 00012 00013 #include <Wt/WContainerWidget> 00014 #include <Wt/WTemplate> 00015 00016 namespace thechess { 00017 namespace widgets { 00018 00019 class IntervalWidget : public Wt::WTemplate { 00020 public: 00021 IntervalWidget(Wt::WWidget* min, Wt::WWidget* max, 00022 Wt::WContainerWidget* parent=0); 00023 }; 00024 00025 } 00026 } 00027 00028 #endif 00029