13
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 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 |
#ifndef _CPIXDOCUMENTPVTIMPL_H
|
|
19 |
#define _CPIXDOCUMENTPVTIMPL_H
|
|
20 |
|
|
21 |
#include <QString>
|
|
22 |
#include <QList>
|
|
23 |
#include "cpixdocumentfield.h"
|
|
24 |
|
|
25 |
//Forward Declarations
|
|
26 |
class CpixDocumentField;
|
|
27 |
|
|
28 |
class CpixDocumentPrivate: public QObject
|
|
29 |
{
|
|
30 |
public:
|
|
31 |
QString iDocId;
|
|
32 |
QString iExcerpt;
|
|
33 |
QString iBaseAppClass;
|
|
34 |
QList< CpixDocumentField* > iFields;
|
16
|
35 |
|
|
36 |
CpixDocumentPrivate::~CpixDocumentPrivate()
|
|
37 |
{
|
|
38 |
for (int i =0; i< iFields.count();i++)
|
|
39 |
{
|
|
40 |
delete iFields.at(i);
|
|
41 |
}
|
|
42 |
}
|
13
|
43 |
};
|
|
44 |
|
|
45 |
#endif //_CPIXDOCUMENTPVTIMPL_H
|