summaryrefslogtreecommitdiffstats
path: root/beetplayer.h
blob: 296f99fb88cc4b79568fb93ed1ffb543129ecd3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef BEETPLAYER_H
#define BEETPLAYER_H

#include <QMainWindow>

class BeetPlayer : public QMainWindow {
    Q_OBJECT
    public:
        enum Tabs { Player = 0, Indexer = 1 };
        explicit BeetPlayer(QWidget *parent = 0, Qt::WindowFlags f = 0);

    private:
        void openDatabase();
};

#endif // BEETPLAYER_H