mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
21 lines
398 B
C++
21 lines
398 B
C++
/* This file is (c) 2008-2018 Abs62
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
#ifndef __TREEVIEW_HH__INCLUDED
|
|
#define __TREEVIEW_HH__INCLUDED
|
|
|
|
#include <QTreeView>
|
|
|
|
class TreeView : public QTreeView
|
|
{
|
|
public:
|
|
TreeView( QWidget * parent = 0 ) :
|
|
QTreeView( parent )
|
|
{}
|
|
|
|
protected:
|
|
virtual void dropEvent( QDropEvent * event );
|
|
};
|
|
|
|
#endif // TREEVIEW_HH
|