/* * 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 class DiveListView : public QTreeView { public: DiveListView(QWidget *parent = 0); }; #endif // DIVELISTVIEW_H