| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | /* | |||
| 2 | * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). | |||
| 3 | * All rights reserved. | |||
| 4 | * This component and the accompanying materials are made available | |||
| 5 | * under the terms of "Eclipse Public License v1.0" | |||
| 6 | * which accompanies this distribution, and is available | |||
| 7 | * at the URL "http://www.eclipse.org/legal/epl-v10.html". | |||
| 8 | * | |||
| 9 | * Initial Contributors: | |||
| 10 | * Nokia Corporation - initial contribution. | |||
| 11 | * | |||
| 12 | * Contributors: | |||
| 13 | * | |||
| 14 | * Description: COutOfDiskPSObserver contains a protected function and some private functions which can't be directly accessed | |||
| 15 | * by test code, so that this derived class is used to public those functions. | |||
| 16 | * | |||
| 17 | */ | |||
| 18 | ||||
| 19 | // USER INCLUDES | |||
| 20 | #include "utoutofdiskpsobserver.h" | |||
| 21 | #include "outofdiskmonitor.h" | |||
| 22 | ||||
| 23 | // ============================ MEMBER FUNCTIONS ============================== | |||
| 24 | ||||
| 25 | // ---------------------------------------------------------------------------- | |||
| 26 | // CSysApPubSubObserver::NewL() | |||
| 27 | // ---------------------------------------------------------------------------- | |||
| Top | ||||
| 1 | 0 | 28 | CUTOutOfDiskPSObserver* CUTOutOfDiskPSObserver::NewL( COutOfDiskMonitor* aOutOfDiskMonitor ) | |
| 29 | { | |||
| 30 | return static_cast<CUTOutOfDiskPSObserver*> (COutOfDiskPSObserver::NewL(aOutOfDiskMonitor)); | |||
| 31 | } | |||
| 32 | ||||
| 33 | ||||
| 34 | // ---------------------------------------------------------------------------- | |||
| 35 | // CSysApPubSubObserver::HandlePropertyChangedL() | |||
| 36 | // ---------------------------------------------------------------------------- | |||
| Top | ||||
| 0 | 0 | - | 37 | void CUTOutOfDiskPSObserver::HandlePropertyChangedL( const TUid& aCategory, const TUint aKey ) |
| 38 | { | |||
| 39 | COutOfDiskPSObserver::HandlePropertyChangedL(aCategory, aKey); | |||
| 40 | } | |||
| 41 | ||||
| 42 | // End of File | |||
| ***TER 50% (1/2) of SOURCE FILE utoutofdiskpsobserver.cpp | ||||