diff -r 000000000000 -r 1e05558e2206 usbengines/usbwatcher/src/tusbpersonalityparams.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/usbengines/usbwatcher/src/tusbpersonalityparams.cpp Thu Dec 17 09:14:30 2009 +0200 @@ -0,0 +1,92 @@ +/* +* Copyright (c) 2006-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: Container class for personalities +* +*/ + + +#include +#include +#include +#include "debug.h" + +// --------------------------------------------------------------------------- +// C++ default constructor can NOT contain any code, that might leave. +// --------------------------------------------------------------------------- +// +EXPORT_C TUsbPersonalityParams::TUsbPersonalityParams( RUsb& aUsbMan, + CUsbPersonalityNotifier& aPersonalityNotifier ) + : iUsbMan( aUsbMan ), + iPersonalityNotifier( aPersonalityNotifier ) + { + LOG_FUNC + + } + +// --------------------------------------------------------------------------- +// C++ default destructor. +// --------------------------------------------------------------------------- +// +EXPORT_C TUsbPersonalityParams::~TUsbPersonalityParams() + { + LOG_FUNC + + } + +// --------------------------------------------------------------------------- +// Handle to USB Manager. +// --------------------------------------------------------------------------- +// +EXPORT_C RUsb& TUsbPersonalityParams::UsbMan() const + { + LOG_FUNC + + return iUsbMan; + } + +// --------------------------------------------------------------------------- +// Handle to personality notifier. +// --------------------------------------------------------------------------- +// +EXPORT_C CUsbPersonalityNotifier& TUsbPersonalityParams::PersonalityNotifier() + const + { + LOG_FUNC + + return iPersonalityNotifier; + } + +// --------------------------------------------------------------------------- +// Set personality id. Set is done by CUsbActivePersonalityHandler. +// --------------------------------------------------------------------------- +// +EXPORT_C void TUsbPersonalityParams::SetPersonalityId( TInt aPersonalityId ) + { + LOG_FUNC + + iPersonalityId = aPersonalityId; + } + +// --------------------------------------------------------------------------- +// Currently loaded personality's id. +// --------------------------------------------------------------------------- +// +EXPORT_C TInt TUsbPersonalityParams::PersonalityId() const + { + LOG_FUNC + + return iPersonalityId; + } + +// End of file