| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | /* | |||
| 2 | * ============================================================================== | |||
| 3 | * Name : imalertnotifierfactory.cpp | |||
| 4 | * Part of : conversations/instantmessagesalert | |||
| 5 | * Description : Publish and Subscribe factory method implementation | |||
| 6 | * Version : %version: 1 % | |||
| 7 | * | |||
| 8 | * Copyright © 2009 Nokia. All rights reserved.. | |||
| 9 | * This material, including documentation and any related | |||
| 10 | * computer programs, is protected by copyright controlled by | |||
| 11 | * Nokia. All rights are reserved. Copying, including | |||
| 12 | * reproducing, storing, adapting or translating, any | |||
| 13 | * or all of this material requires the prior written consent of | |||
| 14 | * Nokia. This material also contains confidential | |||
| 15 | * information which may not be disclosed to others without the | |||
| 16 | * prior written consent of Nokia. | |||
| 17 | * ============================================================================== | |||
| 18 | */ | |||
| 19 | ||||
| 20 | ||||
| 21 | // INCLUDE FILES | |||
| 22 | #include "imalertnotifierfactory.h" | |||
| 23 | #include "mimalertnotifierinterface.h" | |||
| 24 | #include "cimalertnotifierimpl.h" | |||
| 25 | ||||
| 26 | ||||
| 27 | // ============================ MEMBER FUNCTIONS =============================== | |||
| 28 | ||||
| 29 | // --------------------------------------------------------- | |||
| 30 | // IMAlertNotifierFactory::CreateNotifierL | |||
| 31 | // (other items were commented in a header). | |||
| 32 | // --------------------------------------------------------- | |||
| 33 | // | |||
| Top | ||||
| 34 | 0 | 34 | EXPORT_C MIMAlertNotifierInterface* IMAlertNotifierFactory::CreateNotifierL( MIMAlertNotifierKeyObserver* aObserver ) | |
| 35 | { | |||
| 36 | return CIMAlertNotifierImpl::NewL( aObserver ); | |||
| 37 | } | |||
| 38 | ||||
| 39 | // End of File | |||
| 40 | ||||
| ***TER 100% (1/1) of SOURCE FILE imalertnotifierfactory.cpp | ||||