mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
f5c958ad73
This should wrap gettext nicely and replace the "_()" macros we use in C code. Also added comments to the top of all the new files. Suggested-by: Thiago Macieira <thiago@macieira.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
25 lines
360 B
C++
25 lines
360 B
C++
/*
|
|
* 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
|