/************************************************************************
|
* Copyright 2009-2011 Hikvision Digital Technology Co., Ltd.
|
* FileName : audiointercom.cpp
|
* Description : audio intercom
|
* Modification History : none
|
* Version : V1.0
|
* Time : 2009-11,12
|
* Author : wanggongpu
|
* Descrp :
|
*************************************************************************/
|
#include "audiointercom.h"
|
|
/************************************************************************
|
* Function : AudioIntercom
|
* Description : instructor
|
* Input : none
|
* Output : none
|
* Return : none
|
*************************************************************************/
|
AudioIntercom::AudioIntercom(QWidget *parent)
|
: QWidget(parent)
|
{
|
ui.setupUi(this);
|
}
|
|
/************************************************************************
|
* Function : ~AudioIntercom
|
* Description : destructor
|
* Input : none
|
* Output : none
|
* Return : none
|
*************************************************************************/
|
AudioIntercom::~AudioIntercom()
|
{
|
|
}
|
|