/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: Telephony Multimedia Service
*
*/
#include <tmsglobalvoleffect.h>
#include <tmseffectobsrvr.h>
#include "tmsglobalvoleffectbody.h"
using namespace TMS;
EXPORT_C TMSGlobalVolEffect::TMSGlobalVolEffect() :
iBody(NULL)
{
}
EXPORT_C TMSGlobalVolEffect::~TMSGlobalVolEffect()
{
delete iBody;
}
EXPORT_C gint TMSGlobalVolEffect::AddObserver(TMSEffectObserver& obsrvr,
gpointer user_data)
{
gint status(TMS_RESULT_UNINITIALIZED_OBJECT);
if (iBody)
{
status = iBody->AddObserver(obsrvr, user_data);
}
return status;
}
EXPORT_C gint TMSGlobalVolEffect::RemoveObserver(TMSEffectObserver& obsrvr)
{
gint status(TMS_RESULT_UNINITIALIZED_OBJECT);
if (iBody)
{
status = iBody->RemoveObserver(obsrvr);
}
return status;
}
EXPORT_C gint TMSGlobalVolEffect::GetLevel(guint& level)
{
gint status(TMS_RESULT_UNINITIALIZED_OBJECT);
if (iBody)
{
status = iBody->GetLevel(level);
}
return status;
}
EXPORT_C gint TMSGlobalVolEffect::SetLevel(const guint level)
{
gint status(TMS_RESULT_UNINITIALIZED_OBJECT);
if (iBody)
{
status = iBody->SetLevel(level);
}
return status;
}
EXPORT_C gint TMSGlobalVolEffect::GetMaxLevel(guint& level)
{
gint status(TMS_RESULT_UNINITIALIZED_OBJECT);
if (iBody)
{
status = iBody->GetMaxLevel(level);
}
return status;
}
EXPORT_C gint TMSGlobalVolEffect::GetType(TMSSourceType& sourcetype)
{
gint status(TMS_RESULT_UNINITIALIZED_OBJECT);
if (iBody)
{
status = iBody->GetType(sourcetype);
}
return status;
}
// End of file