summaryrefslogtreecommitdiffstats
path: root/src/library/analysislibrarytablemodel.h
blob: a3bfe38a6ead7b5d740346b597e94ffc3d2e3a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ANALYSISLIBRARYTABLEMODEL_H_
#define ANALYSISLIBRARYTABLEMODEL_H_

#include <QModelIndexList>
#include "librarytablemodel.h"

class AnalysisLibraryTableModel : public LibraryTableModel
{
    Q_OBJECT
  public:
    AnalysisLibraryTableModel(QObject* parent,
                             TrackCollection* pTrackCollection);
    virtual ~AnalysisLibraryTableModel();

  public slots:
    void showRecentSongs();
    void showAllSongs();
};

#endif