refs #432, originator list model + view

This commit is contained in:
Klaus Basan
2015-05-27 03:59:27 +02:00
parent e695987fa2
commit 6e2830c130
6 changed files with 148 additions and 3 deletions

View File

@@ -0,0 +1,34 @@
/* Copyright (C) 2015
* swift project Community / Contributors
*
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
* including this file, may be copied, modified, propagated, or distributed except according to the terms
* contained in the LICENSE file.
*/
//! \file
#ifndef BLACKGUI_ORIGINATORVIEW_H
#define BLACKGUI_ORIGINATORVIEW_H
#include "blackgui/blackguiexport.h"
#include "viewbase.h"
#include "../models/originatorlistmodel.h"
namespace BlackGui
{
namespace Views
{
//! Originator servers
class BLACKGUI_EXPORT COriginatorView : public CViewBase<Models::COriginatorListModel, BlackMisc::COriginatorList, BlackMisc::COriginator>
{
public:
//! Constructor
explicit COriginatorView(QWidget *parent = nullptr);
};
}
}
#endif // guard