summaryrefslogtreecommitdiff
path: root/contraaccount.h
blob: 7784cc51b9ccb35c942b3e4f2d0749ce3deb9965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef CONTRAACCOUNT_H
#define CONTRAACCOUNT_H

#include <QtGui/QDialog>

namespace Ui {
    class ContraAccount;
}

class ContraAccount : public QDialog {
    Q_OBJECT
public:
    ContraAccount(QWidget *parent = 0);
    ~ContraAccount();
    int save(int);

private:
    Ui::ContraAccount *m_ui;

private slots:
    void on_buttonBox_accepted();
};

#endif // CONTRAACCOUNT_H