mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
refs #227, view/model for client class
* model * view * and GUI component which now encapsulates the user table view
This commit is contained in:
21
src/blackgui/clientview.h
Normal file
21
src/blackgui/clientview.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user