26
|
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 |
|
|
20 |
#ifndef T_CERRORCONCEALMENTINTFCDATA_H
|
|
21 |
#define T_CERRORCONCEALMENTINTFCDATA_H
|
|
22 |
|
|
23 |
//User includes
|
|
24 |
#include "datawrapperbase.h"
|
|
25 |
|
|
26 |
//Epoc includes
|
|
27 |
#include <ErrorConcealmentIntfc.h>//CErrorConcealmentIntfc
|
|
28 |
|
|
29 |
|
|
30 |
class CT_CErrorConcealmentIntfcData : public CDataWrapperBase
|
|
31 |
{
|
|
32 |
public:
|
|
33 |
~CT_CErrorConcealmentIntfcData();
|
|
34 |
static CT_CErrorConcealmentIntfcData* NewL();
|
|
35 |
virtual TAny* GetObject();
|
|
36 |
virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
|
|
37 |
CT_CErrorConcealmentIntfcData();
|
|
38 |
|
|
39 |
private:
|
|
40 |
void DestroyData();
|
|
41 |
|
|
42 |
protected:
|
|
43 |
void DoCmdNewL();
|
|
44 |
void DoCmdDestructor();
|
|
45 |
void DoCmdConcealErrorForNextBuffer(const TTEFSectionName& aSection);
|
|
46 |
void DoCmdSetFrameMode(const TTEFSectionName& aSection);
|
|
47 |
void DoCmdFrameModeRqrdForEC(const TTEFSectionName& aSection);
|
|
48 |
|
|
49 |
|
|
50 |
private:
|
|
51 |
/**
|
|
52 |
* Wrapped object
|
|
53 |
*/
|
|
54 |
CErrorConcealmentIntfc* iErrorConcealmentIntfc;
|
|
55 |
};
|
|
56 |
|
|
57 |
#endif /*T_CERRORCONCEALMENTINTFCDATA_H*/
|