~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to library/canvas/mdc_prefix.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// prefix header for xcode
 
2
 
 
3
#include <list>
 
4
#include <vector>
 
5
#include <string>
 
6
#include <map>
 
7
#include <set>
 
8
#include <stdexcept>
 
9
 
 
10
#ifdef __APPLE__
 
11
#undef nil
 
12
#define nil empty
 
13
#endif
 
14
#include <sigc++/sigc++.h>
 
15
 
 
16
 
 
17
#ifdef __GNUC__
 
18
# include <ext/hash_set>
 
19
#define ext __gnu_cxx
 
20
#else
 
21
# include <hash_set>
 
22
#define ext std
 
23
#endif
 
24
 
 
25
#include <math.h>
 
26
 
 
27
#include "cairo/cairo.h"
 
28
 
 
29
 
 
30
#ifdef __APPLE__
 
31
#include <OpenGL/gl.h>
 
32
#elif defined(WIN32)
 
33
#else
 
34
#include <GL/gl.h>
 
35
#endif
 
36