00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef QBANKING_SIMPLEBOX_H
00014 #define QBANKING_SIMPLEBOX_H
00015
00016
00017 #include "qbsimplebox.ui.h"
00018 #include <gwenhywfar/types.h>
00019 #include <aqbanking/banking.h>
00020
00021
00022
00023 class QBSimpleBox: public QBSimpleBoxUi {
00024 Q_OBJECT
00025 private:
00026 GWEN_TYPE_UINT32 _id;
00027
00028 public:
00029 QBSimpleBox(GWEN_TYPE_UINT32 id,
00030 const QString& title,
00031 const QString& text,
00032 QWidget* parent=0, const char* name=0, WFlags fl=0);
00033 ~QBSimpleBox();
00034
00035 GWEN_TYPE_UINT32 getId();
00036 };
00037
00038
00039
00040
00041
00042
00043
00044 #endif
00045