~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmithContribItems/wxchart/wxchart-1.0/include/wx/chartdef.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        chartdef.h
 
3
// Purpose:     wxChart
 
4
// Author:      Paolo Gava
 
5
// Modified by:
 
6
// Created:
 
7
// Copyright:   (C) 2006, Paolo Gava
 
8
// RCS-ID:      $Id: chartdef.h 3904 2007-04-28 19:48:09Z byo $
 
9
// Licence:     wxWindows licence
 
10
/////////////////////////////////////////////////////////////////////////////
 
11
 
 
12
#if !defined( __CHARTDEF_H__ )
 
13
#define __CHARTDEF_H__
 
14
 
 
15
// Version
 
16
#define wxCHART_MAJOR          0
 
17
#define wxCHART_MINOR          1
 
18
#define wxCHART_RELEASE        0
 
19
 
 
20
// Defines for shared builds
 
21
#ifdef WXMAKINGDLL_CHART
 
22
    #define WXDLLIMPEXP_CHART                  WXEXPORT
 
23
    #define WXDLLIMPEXP_DATA_CHART(type)       WXEXPORT type
 
24
#elif defined(WXUSINGDLL)
 
25
    #define WXDLLIMPEXP_CHART                  WXIMPORT
 
26
    #define WXDLLIMPEXP_DATA_CHART(type)       WXIMPORT type
 
27
#else // not making nor using DLL
 
28
    #define WXDLLIMPEXP_CHART
 
29
    #define WXDLLIMPEXP_DATA_CHART(type)       type
 
30
#endif
 
31
 
 
32
 
 
33
#endif // __CHARTDEF_H__