refs #335, voice room component in new cockpit

This commit is contained in:
Klaus Basan
2014-10-11 01:38:17 +02:00
committed by Roland Winklmeier
parent 6d01376e37
commit 5a623c530d
3 changed files with 235 additions and 0 deletions

View 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