os/kernelhwsrv/baseapitest/basesvs/validation/f32/sfsrv/src/T_ActiveNotifyChange.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/baseapitest/basesvs/validation/f32/sfsrv/src/T_ActiveNotifyChange.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,70 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +/**
1.23 +@test
1.24 +@internalComponent
1.25 +
1.26 +This contains CT_ActiveNotifyChange
1.27 +*/
1.28 +
1.29 +// User includes
1.30 +#include "T_ActiveNotifyChange.h"
1.31 +
1.32 +CT_ActiveNotifyChange* CT_ActiveNotifyChange::NewL(TInt aCount, TInt aAsyncErrorIndex, MActiveCallback& aCallback, TInt aPriority)
1.33 +/**
1.34 + * Two phase constructor
1.35 + */
1.36 + {
1.37 + CT_ActiveNotifyChange* ret = new (ELeave) CT_ActiveNotifyChange(aCount, aAsyncErrorIndex, aCallback, aPriority);
1.38 + CleanupStack::PushL(ret);
1.39 + ret->ConstructL();
1.40 + CleanupStack::Pop(ret);
1.41 + return ret;
1.42 + }
1.43 +
1.44 +CT_ActiveNotifyChange* CT_ActiveNotifyChange::NewLC(TInt aCount, TInt aAsyncErrorIndex, MActiveCallback& aCallback, TInt aPriority)
1.45 +/**
1.46 + * Two phase constructor
1.47 + */
1.48 + {
1.49 + CT_ActiveNotifyChange* ret = new (ELeave) CT_ActiveNotifyChange(aCount, aAsyncErrorIndex, aCallback, aPriority);
1.50 + CleanupStack::PushL(ret);
1.51 + ret->ConstructL();
1.52 + return ret;
1.53 + }
1.54 +
1.55 +CT_ActiveNotifyChange::CT_ActiveNotifyChange(TInt aCount, TInt aAsyncErrorIndex, MActiveCallback& aCallback, TInt aPriority)
1.56 +/**
1.57 + * Protected constructor. First phase construction
1.58 + */
1.59 +: CActiveCallback(aCallback, aPriority)
1.60 +, iCount(aCount)
1.61 +, iAsyncErrorIndex(aAsyncErrorIndex)
1.62 + {
1.63 + }
1.64 +
1.65 +void CT_ActiveNotifyChange::Activate()
1.66 + {
1.67 + CActiveCallback::Activate(iAsyncErrorIndex);
1.68 + }
1.69 +
1.70 +TInt CT_ActiveNotifyChange::DecCount()
1.71 + {
1.72 + return --iCount;
1.73 + }