| Start/ | End/ | |||
| True | False | - | Line | Source |
| 1 | /* | |||
| 2 | * ============================================================================ | |||
| 3 | * Name : mccaconnection.cpp | |||
| 4 | * Part of : CCA / CCAClient | |||
| 5 | * Description : This is a class for launching CCA application. | |||
| 6 | * Version : %version: 6 % | |||
| 7 | * | |||
| 8 | * Copyright © 2007 Nokia. All rights reserved. | |||
| 9 | * This material, including documentation and any related computer | |||
| 10 | * programs, is protected by copyright controlled by Nokia. All | |||
| 11 | * rights are reserved. Copying, including reproducing, storing, | |||
| 12 | * adapting or translating, any or all of this material requires the | |||
| 13 | * prior written consent of Nokia. This material also contains | |||
| 14 | * confidential information which may not be disclosed to others | |||
| 15 | * without the prior written consent of Nokia. | |||
| 16 | * ============================================================================ | |||
| 17 | * Template version: 4.2 | |||
| 18 | */ | |||
| 19 | ||||
| 20 | ||||
| 21 | #include "s_mccaconnection.h" | |||
| 22 | ||||
| 23 | ||||
| 24 | class MCCAParameter; | |||
| 25 | class MCCAObserver; | |||
| 26 | ||||
| 27 | ||||
| 1 | 0 | 28 | MCCAConnection* MCCAConnectionStub::NewL() | |
| 29 | { | |||
| 30 | MCCAConnection* parameter = new(ELeave)MCCAConnectionStub; | |||
| 1 | 31 | return parameter; | ||
| 32 | } | |||
| 33 | ||||
| 0 | 0 | - | 34 | void MCCAConnectionStub::Close() |
| 35 | { | |||
| 36 | ||||
| 37 | } | |||
| 38 | /** | |||
| 39 | * DEPRECATED - USE LaunchAppL() instead! | |||
| 40 | * Ownership of MCCAParameter is NOT transferred. | |||
| 41 | */ | |||
| 0 | 0 | - | 42 | void MCCAConnectionStub::LaunchApplicationL( MCCAParameter& aParameter ) |
| 43 | { | |||
| 44 | ||||
| 45 | } | |||
| 46 | ||||
| 47 | ||||
| 48 | ||||
| 0 | 0 | - | 49 | void MCCAConnectionStub::LaunchAppL( |
| 50 | MCCAParameter& aParameter, | |||
| 51 | MCCAObserver* aObserver ) | |||
| 52 | { | |||
| 53 | ||||
| 54 | } | |||
| 55 | // End of File | |||
| 56 | ||||
| ***TER 40% (2/5) of SOURCE FILE s_mccaconnection.cpp | ||||