mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
20 lines
282 B
C
20 lines
282 B
C
|
#ifndef DIVELISTVIEW_H
|
||
|
#define DIVELISTVIEW_H
|
||
|
|
||
|
/*! A view subclass for use with dives
|
||
|
|
||
|
Note: calling this a list view might be misleading?
|
||
|
|
||
|
|
||
|
*/
|
||
|
|
||
|
#include <QTreeView>
|
||
|
|
||
|
class DiveListView : public QTreeView
|
||
|
{
|
||
|
public:
|
||
|
DiveListView(QWidget *parent = 0);
|
||
|
};
|
||
|
|
||
|
#endif // DIVELISTVIEW_H
|