24
|
1 |
// Copyright (c) 2008-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 |
// ETel API
|
|
15 |
// Header file for packet list classes
|
|
16 |
//
|
|
17 |
//
|
|
18 |
|
|
19 |
/**
|
|
20 |
@file
|
|
21 |
*/
|
|
22 |
|
|
23 |
#ifndef _PCKTLIST_H_
|
|
24 |
#define _PCKTLIST_H_
|
|
25 |
|
|
26 |
#include <etelpckt.h>
|
|
27 |
#include <mmlist.h>
|
|
28 |
|
|
29 |
class CPcktMbmsMonitoredServiceList : public CMobilePhoneEditableList<RPacketService::TMbmsServiceAvailabilityV1>
|
|
30 |
/**
|
|
31 |
An instantiation of the "read-write" list thin-template used
|
|
32 |
to hold the Mbms Service availability list retrieved from the Network.
|
|
33 |
|
|
34 |
@publishedPartner
|
|
35 |
@released
|
|
36 |
|
|
37 |
@see CRetrievePcktMbmsMonitoredServices
|
|
38 |
*/
|
|
39 |
{
|
|
40 |
public:
|
|
41 |
IMPORT_C static CPcktMbmsMonitoredServiceList* NewL();
|
|
42 |
IMPORT_C ~CPcktMbmsMonitoredServiceList();
|
|
43 |
|
|
44 |
protected:
|
|
45 |
CPcktMbmsMonitoredServiceList();
|
|
46 |
};
|
|
47 |
|
|
48 |
#endif
|