| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | ||||
| 2 | /* | |||
| 3 | * ============================================================================ | |||
| 4 | * Name : ccafactory.cpp | |||
| 5 | * Part of : CCA / CCAClient | |||
| 6 | * Description : Factory class for CCA Client | |||
| 7 | * Version : %version: 2 % << Don't touch! Updated by Synergy at check-out. | |||
| 8 | * | |||
| 9 | * Copyright © 2007 Nokia. All rights reserved. | |||
| 10 | * This material, including documentation and any related computer | |||
| 11 | * programs, is protected by copyright controlled by Nokia. All | |||
| 12 | * rights are reserved. Copying, including reproducing, storing, | |||
| 13 | * adapting or translating, any or all of this material requires the | |||
| 14 | * prior written consent of Nokia. This material also contains | |||
| 15 | * confidential information which may not be disclosed to others | |||
| 16 | * without the prior written consent of Nokia. | |||
| 17 | * ============================================================================ | |||
| 18 | * Template version: 4.2 | |||
| 19 | */ | |||
| 20 | #include <ccafactory.h> | |||
| 21 | #include "s_mccaparameter.h" | |||
| 22 | ||||
| 23 | class MCCAConnection; | |||
| 24 | class MCCAParameter; | |||
| 25 | ||||
| 26 | /** | |||
| 27 | * Create new CCA client parameter entity. | |||
| 28 | * Ownership is transferred. | |||
| 29 | * @since S60 5.0 | |||
| 30 | * @return MCCAParameter, ownership is transferred. | |||
| 31 | */ | |||
| 0 | 0 | - | 32 | EXPORT_C MCCAParameter* TCCAFactory::NewParameterL( ) |
| 33 | { | |||
| 34 | MCCAParameter* parameter = MCCAParameterstub::NewL(); | |||
| 35 | return parameter; | |||
| 36 | } | |||
| 37 | ||||
| 38 | /** | |||
| 39 | * Create new CCA client connection entity. | |||
| 40 | * Ownership is transferred. | |||
| 41 | * @since S60 5.0 | |||
| 42 | * @return MCCAConnection, ownership is transferred. | |||
| 43 | */ | |||
| 0 | 0 | - | 44 | EXPORT_C MCCAConnection* TCCAFactory::NewConnectionL( ) |
| 45 | { | |||
| 46 | } | |||
| 47 | // End of File | |||
| 48 | ||||
| ***TER 0% (0/2) of SOURCE FILE s_ccafactory.cpp | ||||