1 #ifndef GUI_AUXILIARY_WINDOW_BUILDER_PROGRESS_BAR_HPP_INCLUDED
2 #define GUI_AUXILIARY_WINDOW_BUILDER_PROGRESS_BAR_HPP_INCLUDED
3 
4 #include "gui/auxiliary/window_builder/control.hpp"
5 
6 namespace gui2 {
7 
8 namespace implementation {
9 
10 struct tbuilder_progress_bar /*@ \label{window_builder.hpp:control} @*/
11 	: public tbuilder_control
12 {
13 
14 	tbuilder_progress_bar(const config& cfg);
15 
16 	twidget* build () const;
17 };
18 
19 } // namespace implementation
20 
21 } // namespace gui2
22 
23 #endif
24