Files
pilotclient/src/blackgui/clientview.h
Klaus Basan 4686da4827 refs #227, view/model for client class
* model
* view
* and GUI component which now encapsulates the user table view
2014-05-06 21:47:15 +02:00

22 lines
361 B
C++

#ifndef BLACKGUI_CLIENTVIEW_H
#define BLACKGUI_CLIENTVIEW_H
#include "viewbase.h"
#include "clientlistmodel.h"
namespace BlackGui
{
/*!
* \brief Client view
*/
class CClientView : public CViewBase<CClientListModel>
{
public:
//! Constructor
explicit CClientView(QWidget *parent = nullptr);
};
}
#endif // guard