mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
22 lines
361 B
C++
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
|