]> icculus.org git repositories - duncan/yast2-web-wt.git/blob - src/YWebDialog.cc
widget representation and dialog
[duncan/yast2-web-wt.git] / src / YWebDialog.cc
1 /*---------------------------------------------------------------------\
2 |                                                                      |
3 |                      __   __    ____ _____ ____                      |
4 |                      \ \ / /_ _/ ___|_   _|___ \                     |
5 |                       \ V / _` \___ \ | |   __) |                    |
6 |                        | | (_| |___) || |  / __/                     |
7 |                        |_|\__,_|____/ |_| |_____|                    |
8 |                                                                      |
9 |                               core system                            |
10 |                                                        (C) SuSE GmbH |
11 \----------------------------------------------------------------------/
12
13   File:         YWebDialog.cc
14
15   Author:       Stefan Hundhammer <sh@suse.de>
16
17 /-*/
18
19
20 #define y2log_component "web-ui"
21
22 #include <WContainerWidget>
23 #include "YWebDialog.h"
24
25 using std::string;
26 using namespace Wt;
27
28 YWebDialog::YWebDialog( const YWidgetOpt & opt, Wt::WContainerWidget *parent )
29     : YDialog( opt ), WContainerWidget(parent)
30 {
31   setWidgetRep( this );
32 }
33
34
35 YWebDialog::~YWebDialog()
36 {
37 }
38
39
40
41