Files
pilotclient/src/blackgui/views/countryview.cpp
Klaus Basan 55534cbb09 Formatting
2018-04-13 23:36:12 +02:00

26 lines
794 B
C++

/* 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.
*/
#include "blackgui/views/countryview.h"
using namespace BlackGui::Models;
namespace BlackGui
{
namespace Views
{
CCountryView::CCountryView(QWidget *parent) :
CViewBase(parent)
{
this->standardInit(new CCountryListModel(this));
this->setMenu(MenuDefaultDbViews);
}
} // ns
} // ns