equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: Base class for sub-sessions. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "CSatSSubSession.h" |
|
22 #include "CSatSServer.h" |
|
23 #include "CSatSSession.h" |
|
24 #include "SatLog.h" |
|
25 |
|
26 // ============================ MEMBER FUNCTIONS =============================== |
|
27 |
|
28 // ----------------------------------------------------------------------------- |
|
29 // CSatSSubSession::CSatSSubSession |
|
30 // C++ default constructor can NOT contain any code, that |
|
31 // might leave. |
|
32 // ----------------------------------------------------------------------------- |
|
33 // |
|
34 CSatSSubSession::CSatSSubSession( CSatSSession& aSession ) : |
|
35 CObject(), |
|
36 iSession( aSession ) |
|
37 { |
|
38 LOG( SIMPLE, |
|
39 "SATENGINE: CSatSSubSession::CSatSSubSession calling-exiting" ) |
|
40 } |
|
41 |
|
42 // Destructor |
|
43 CSatSSubSession::~CSatSSubSession() |
|
44 { |
|
45 LOG( SIMPLE, |
|
46 "SATENGINE: CSatSSubSession::~CSatSSubSession calling-exiting" ) |
|
47 } |
|
48 |
|
49 // End of File |