summaryrefslogtreecommitdiff
path: root/noncore/unsupported/qashmoney/currency.h
blob: 08bb3c1e8a07a2a2dc08c028e88f7c5a97236f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef CURRENCY_H
#define CURRENCY_H

#include <qgroupbox.h>
#include <qlabel.h>
#include <qcombobox.h>
#include <qpixmap.h>
#include <qlayout.h>

class Currency : public QWidget
  {
    Q_OBJECT

    public:

      Currency ( QWidget *parent );
      QLabel *currencylabel;
      QComboBox *currencybox;
      QBoxLayout *layout;
  };

#endif