Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef QBANKING_BANKSELECTOR_H
00014 #define QBANKING_BANKSELECTOR_H
00015
00016 #include <qbanking/qbbankselector.ui.h>
00017 #include <qbanking/qbanking.h>
00018
00019
00020 class QBanking;
00021
00022
00023 class QBANKING_API QBBankSelector : protected QBBankSelectorUi {
00024 Q_OBJECT
00025
00026 private:
00027 QBanking *_qbanking;
00028 QString _country;
00029
00030 public:
00031 QBBankSelector(QBanking *qb,
00032 const QString &country=QString("de"),
00033 QWidget* parent=0, const char* name=0, WFlags fl=0);
00034 ~QBBankSelector();
00035
00036 QString getBankCode();
00037
00038 private slots:
00039 void slotButtonClicked();
00040 };
00041
00042 #endif
00043