blob: be9774c5c0483b8a57ec6e1f549260dda4a7952b (
plain) (
tree)
|
|
/*
* divelistview.h
*
* header file for the dive list of Subsurface
*
*/
#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
|