diff -r 16e4b9007960 -r f5508c13dfe0 bluetoothappprofiles/avrcp/absolutevolumeapi/public/absolutevolumeutils.h --- a/bluetoothappprofiles/avrcp/absolutevolumeapi/public/absolutevolumeutils.h Wed Oct 13 13:15:31 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,62 +0,0 @@ -// Copyright (c) 2008-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: -// - - - -/** - @file - @publishedPartner - @released -*/ - -#ifndef ABSOLUTEVOLUMEUTILS_H_ -#define ABSOLUTEVOLUMEUTILS_H_ - -#include -#include - -class RRemConAbsoluteVolume - { -public: - virtual void ReadL(const TDesC8& aData) = 0; - virtual void WriteL(TDes8& aOutData) = 0; - IMPORT_C void Close(); - -public: - TUint32 iVolume; - TUint32 iMaxVolume; - -protected: - RDesWriteStream iStream; - RDesReadStream iReadStream; - }; - -class RRemConAbsoluteVolumeRequest : public RRemConAbsoluteVolume - { -public: - IMPORT_C void ReadL(const TDesC8& aData); - IMPORT_C void WriteL(TDes8& aOutData); - }; - -class RRemConAbsoluteVolumeResponse : public RRemConAbsoluteVolume - { -public: - IMPORT_C void ReadL(const TDesC8& aData); - IMPORT_C void WriteL(TDes8& aOutData); -public: - TInt32 iError; - }; - -#endif /*ABSOLUTEVOLUMEUTILS_H_*/