~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to kchart/kdchart/src/Ternary/KDChartTernaryLineDiagram_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

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) 2005-2007 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
 
 
28
 
#ifndef KDCHARTTERNARYLINEDIAGRAM_P_H
29
 
#define KDCHARTTERNARYLINEDIAGRAM_P_H
30
 
 
31
 
//
32
 
//  W A R N I N G
33
 
//  -------------
34
 
//
35
 
// This file is not part of the KD Chart API.  It exists purely as an
36
 
// implementation detail.  This header file may change from version to
37
 
// version without notice, or even be removed.
38
 
//
39
 
// We mean it.
40
 
//
41
 
 
42
 
#include "KDChartAbstractTernaryDiagram_p.h"
43
 
 
44
 
#include <KDABLibFakes>
45
 
 
46
 
namespace KDChart {
47
 
 
48
 
/**
49
 
 * \internal
50
 
 */
51
 
    class TernaryLineDiagram::Private : public AbstractTernaryDiagram::Private
52
 
    {
53
 
        friend class TernaryLineDiagram;
54
 
    public:
55
 
        Private();
56
 
        ~Private() {}
57
 
 
58
 
        Private( const Private& rhs )
59
 
            : AbstractTernaryDiagram::Private( rhs )
60
 
        {
61
 
        }
62
 
 
63
 
    };
64
 
 
65
 
    KDCHART_IMPL_DERIVED_DIAGRAM( TernaryLineDiagram, AbstractTernaryDiagram, TernaryCoordinatePlane )
66
 
/*
67
 
  inline LineDiagram::LineDiagram( Private * p, TernaryCoordinatePlane* plane )
68
 
  : AbstractTernaryDiagram( p, plane ) { init(); }
69
 
  inline LineDiagram::Private * LineDiagram::d_func()
70
 
  { return static_cast<Private*>( AbstractTernaryDiagram::d_func() ); }
71
 
  inline const LineDiagram::Private * LineDiagram::d_func() const
72
 
  { return static_cast<const Private*>( AbstractTernaryDiagram::d_func() ); }
73
 
*/
74
 
 
75
 
}
76
 
 
77
 
#endif /* KDCHARTTERNARYLINEDIAGRAM_P_H */
78