16 lines
236 B
C++
16 lines
236 B
C++
#ifndef __MEDIALIBVIEW_H__
|
|
#define __MEDIALIBVIEW_H__
|
|
|
|
#include "XMMSSocket.h"
|
|
#include <QTreeView>
|
|
#include <QAbstractItemModel>
|
|
|
|
class MedialibView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MedialibView (QWidget *parent);
|
|
};
|
|
|
|
|
|
#endif
|