85
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 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: ?Description
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef __CAENTRIESARRAY_H__
|
|
19 |
#define __CAENTRIESARRAY_H__
|
|
20 |
|
|
21 |
#include <e32base.h>
|
|
22 |
|
|
23 |
//FORWARD DECLARATIONS
|
|
24 |
class RWriteStream;
|
|
25 |
class RReadStream;
|
|
26 |
class CCaInnerEntry;
|
|
27 |
/**
|
|
28 |
* Entries array.
|
|
29 |
* @lib camenu.lib
|
|
30 |
* @since S60 v5.0
|
|
31 |
*/
|
|
32 |
NONSHARABLE_CLASS( RCaEntriesArray ): public RPointerArray<CCaInnerEntry>
|
|
33 |
{
|
|
34 |
public:
|
|
35 |
|
|
36 |
/**
|
|
37 |
* Externalizes array to the stream
|
|
38 |
* @param aStream a write stream
|
|
39 |
*/
|
|
40 |
IMPORT_C void ExternalizeL( RWriteStream& aStream ) const;
|
|
41 |
|
|
42 |
/**
|
|
43 |
* Internalizes stream to the array
|
|
44 |
* @param aStream a read stream
|
|
45 |
*/
|
|
46 |
IMPORT_C void InternalizeL( RReadStream& aStream );
|
|
47 |
|
|
48 |
};
|
|
49 |
|
|
50 |
#endif // __CAENTRIESARRAY_H__
|