~ubuntu-branches/ubuntu/karmic/kguitar/karmic

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 SETSONG_H
#define SETSONG_H

#include <qdialog.h>
#include "global.h"

class QLineEdit;
class QMultiLineEdit;
class KIntNumInput;

class SetSong: public QDialog
{
    Q_OBJECT
public:
    SetSong(QWidget *parent=0, const char *name=0);

    QLineEdit *title, *author, *transcriber;
    QMultiLineEdit *comments;

	KIntNumInput *tempo;
private:
};

#endif