mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 04:25:35 +08:00
refs #335, voice room component in new cockpit
This commit is contained in:
committed by
Roland Winklmeier
parent
6d01376e37
commit
5a623c530d
30
src/blackgui/components/voiceroomscomponent.cpp
Normal file
30
src/blackgui/components/voiceroomscomponent.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
/* Copyright (C) 2013
|
||||
* 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 "voiceroomscomponent.h"
|
||||
#include "ui_voiceroomscomponent.h"
|
||||
|
||||
namespace BlackGui
|
||||
{
|
||||
namespace Components
|
||||
{
|
||||
|
||||
CVoiceRoomsComponent::CVoiceRoomsComponent(QWidget *parent) :
|
||||
QFrame(parent),
|
||||
ui(new Ui::CVoiceRoomsComponent)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
CVoiceRoomsComponent::~CVoiceRoomsComponent()
|
||||
{ }
|
||||
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
Reference in New Issue
Block a user