diff -r 000000000000 -r 71ca22bcf22a mmserv/tms/tmscallserver/inc/tarsettings.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmserv/tms/tmscallserver/inc/tarsettings.h Tue Feb 02 01:08:46 2010 +0200 @@ -0,0 +1,70 @@ +/* + * 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 + * + */ + +#ifndef TARSETTINGS_H +#define TARSETTINGS_H + +// INCLUDES +#include +#include +#include +#include "tmsclientserver.h" + +namespace TMS { + +// CLASS DECLARATION +class TarSettings : public CBase + { +public: + // Constructors and destructor + + /** + * Two-phased constructor. + */ + static TarSettings* NewL(); + + /** + * Destructor. + */ + virtual ~TarSettings(); + +public: + // New functions + + void SetTar(TRoutingMsgBufPckg rountingpckg, TBool aPublish = ETrue); + +private: + + /** + * C++ default constructor. + */ + TarSettings(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + +private: + TInt iVolume; //Volume + }; + +} //namespace TMS + +#endif // TarSETTINGS_H + +// End of File