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 __CAOPERATIONPARAMS_H__
|
|
19 |
#define __CAOPERATIONPARAMS_H__
|
|
20 |
|
|
21 |
#include <e32base.h>
|
|
22 |
|
|
23 |
/*
|
|
24 |
* Describes operation type for Organize operation
|
|
25 |
*/
|
|
26 |
class TCaOperationParams
|
|
27 |
{
|
|
28 |
public:
|
|
29 |
enum OperationType
|
|
30 |
{
|
|
31 |
EInsert,
|
|
32 |
EAppend,
|
|
33 |
EPrepend,
|
|
34 |
ERemove
|
|
35 |
};
|
|
36 |
|
|
37 |
/*
|
|
38 |
* Operation type
|
|
39 |
*/
|
|
40 |
OperationType iOperationType;
|
|
41 |
|
|
42 |
/*
|
|
43 |
* Group Id
|
|
44 |
*/
|
|
45 |
TInt iGroupId;
|
|
46 |
|
|
47 |
/*
|
|
48 |
* Before Entry Id
|
|
49 |
*/
|
|
50 |
TInt iBeforeEntryId;
|
|
51 |
|
|
52 |
};
|
|
53 |
|
|
54 |
#endif //__CAOPERATIONPARAMS_H__
|