~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kchart/kdchart/kdchartserializer/src/KDChartSerializeCollector_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C++ -*-
2
 
   KDChart - a multi-platform charting engine
3
 
   */
4
 
 
5
 
/****************************************************************************
6
 
 ** Copyright (C) 2001-2006 Klarälvdalens Datakonsult AB.  All rights reserved.
7
 
 **
8
 
 ** This file is part of the KD Chart library.
9
 
 **
10
 
 ** This file may be used under the terms of the GNU General Public
11
 
 ** License versions 2.0 or 3.0 as published by the Free Software
12
 
 ** Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
13
 
 ** included in the packaging of this file.  Alternatively you may (at
14
 
 ** your option) use any later version of the GNU General Public
15
 
 ** License if such license has been publicly approved by
16
 
 ** Klarälvdalens Datakonsult AB (or its successors, if any).
17
 
 ** 
18
 
 ** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
19
 
 ** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
20
 
 ** A PARTICULAR PURPOSE. Klarälvdalens Datakonsult AB reserves all rights
21
 
 ** not expressly granted herein.
22
 
 ** 
23
 
 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
24
 
 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
25
 
 **
26
 
 **********************************************************************/
27
 
#ifndef __KDCHARTTEXTAREASERIALIZER_P_H__
28
 
#define __KDCHARTTEXTAREASERIALIZER_P_H__
29
 
 
30
 
//
31
 
//  W A R N I N G
32
 
//  -------------
33
 
//
34
 
// This file is not part of the KD Chart API.  It exists purely as an
35
 
// implementation detail.  This header file may change from version to
36
 
// version without notice, or even be removed.
37
 
//
38
 
// We mean it.
39
 
//
40
 
 
41
 
#include <KDChartSerializeCollector.h>
42
 
 
43
 
/**
44
 
 * \internal
45
 
 */
46
 
class KDChart::SerializeCollector::Private
47
 
{
48
 
    friend class ::KDChart::SerializeCollector;
49
 
    SerializeCollector * const q;
50
 
public:
51
 
    explicit Private( SerializeCollector * qq );
52
 
    ~Private(); // non-virtual, since nothing inherits this
53
 
protected:
54
 
    static QString unresolvedTagName();
55
 
    static QString unresolvedMapName();
56
 
 
57
 
    QMap< QString, QDomElement* > m_map;
58
 
    InitializedPointersMap m_initializedPointersMap;
59
 
};
60
 
 
61
 
 
62
 
#endif // KDChartTextAreaSerializer_p_H