author | Leon Anavi <leon.anavi@opencode.com> |
Sat, 06 Nov 2010 18:38:12 +0200 | |
branch | opencode |
changeset 87 | 434681fe53c8 |
parent 24 | 6638e7f4bd8f |
permissions | -rw-r--r-- |
24 | 1 |
/* |
2 |
* Copyright (c) 2005-2009 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: |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
||
19 |
#ifndef T_RSOCKETSERVDATA_H |
|
20 |
#define T_RSOCKETSERVDATA_H |
|
21 |
||
22 |
#include "DataWrapperBase.h" |
|
23 |
#include <es_sock.h> |
|
24 |
||
25 |
class CT_RSocketServData: public CDataWrapperBase |
|
26 |
{ |
|
27 |
public: |
|
28 |
static CT_RSocketServData* NewL(); |
|
29 |
virtual ~CT_RSocketServData(); |
|
30 |
||
31 |
private: |
|
32 |
CT_RSocketServData(); |
|
33 |
void ConstructL(); |
|
34 |
||
35 |
public: |
|
36 |
virtual TAny* GetObject(); |
|
37 |
virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); |
|
38 |
||
39 |
private: |
|
40 |
void DoCmdConnect(); |
|
41 |
void DoCmdClose(); |
|
42 |
||
43 |
private: |
|
44 |
RSocketServ* iSocketServ; |
|
45 |
||
46 |
}; |
|
47 |
||
48 |
#endif // T_RSOCKETSERVDATA_H |
|
49 |
||
0
3553901f7fa8
Revision: 201005
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
diff
changeset
|
50 |