equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // The sole purpose of this class is to connect to RFbsSession on |
|
15 // Construction and Disconnect from RFbsSession on Destruction. |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef __ICLFBSSESSIONTEST_H__ |
|
20 #define __ICLFBSSESSIONTEST_H__ |
|
21 |
|
22 #include <fbs.h> |
|
23 #include <e32std.h> |
|
24 |
|
25 class CICLFbsSessionTest: public CBase |
|
26 { |
|
27 private: |
|
28 void ConnectToSessionL(); // Makes an actual Connection to RFbsSession |
|
29 CICLFbsSessionTest(); // Default Constructor |
|
30 |
|
31 public: |
|
32 ~CICLFbsSessionTest(); // Default Destructor |
|
33 static CICLFbsSessionTest* NewLC(); |
|
34 }; |
|
35 |
|
36 #include "ICLFbsSessionTest.inl" |
|
37 |
|
38 #endif //__ICLFBSSESSIONTEST_H__ |