home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / KDChartTable.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-05-30  |  1.5 KB  |  48 lines

  1. /* -*- Mode: C++ -*-
  2.    KDChart - a multi-platform charting engine
  3.    */
  4.  
  5. /****************************************************************************
  6.  ** Copyright (C) 2001-2003 Klar├ñlvdalens Datakonsult AB.  All rights reserved.
  7.  **
  8.  ** This file is part of the KDChart library.
  9.  **
  10.  ** This file may be distributed and/or modified under the terms of the
  11.  ** GNU General Public License version 2 as published by the Free Software
  12.  ** Foundation and appearing in the file LICENSE.GPL included in the
  13.  ** packaging of this file.
  14.  **
  15.  ** Licensees holding valid commercial KDChart licenses may use this file in
  16.  ** accordance with the KDChart Commercial License Agreement provided with
  17.  ** the Software.
  18.  **
  19.  ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  20.  ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  21.  **
  22.  ** See http://www.klaralvdalens-datakonsult.se/?page=products for
  23.  **   information about KDChart Commercial License Agreements.
  24.  **
  25.  ** Contact info@klaralvdalens-datakonsult.se if any conditions of this
  26.  ** licensing are not clear to you.
  27.  **
  28.  **********************************************************************/
  29. #ifndef __KDCHARTTABLE_H__
  30. #define __KDCHARTTABLE_H__
  31.  
  32. // *must* include this one as first one:
  33. #include <KDChartGlobal.h>
  34.  
  35. #include <KDChartListTable.h>
  36. #if COMPAT_QT_VERSION >= 0x030000
  37. #include <KDChartVectorTable.h>
  38. #endif
  39.  
  40. #if COMPAT_QT_VERSION >= 0x030000
  41. typedef KDChartVectorTableData KDChartTableData;
  42. #else
  43. typedef KDChartListTableData KDChartTableData;
  44. #endif
  45.  
  46.  
  47. #endif
  48.