~ubuntu-branches/ubuntu/maverick/freecad/maverick

« back to all changes in this revision

Viewing changes to src/Tools/_TEMPLATE_/Gui/PreCompiled.h

  • Committer: Bazaar Package Importer
  • Author(s): Teemu Ikonen
  • Date: 2009-07-16 18:37:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090716183741-oww9kcxqrk991i1n
Tags: upstream-0.8.2237
ImportĀ upstreamĀ versionĀ 0.8.2237

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (c) YEAR YOUR NAME         <Your e-mail address>            *
 
3
 *                                                                         *
 
4
 *   This file is part of the FreeCAD CAx development system.              *
 
5
 *                                                                         *
 
6
 *   This library is free software; you can redistribute it and/or         *
 
7
 *   modify it under the terms of the GNU Library General Public           *
 
8
 *   License as published by the Free Software Foundation; either          *
 
9
 *   version 2 of the License, or (at your option) any later version.      *
 
10
 *                                                                         *
 
11
 *   This library  is distributed in the hope that it will be useful,      *
 
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
14
 *   GNU Library General Public License for more details.                  *
 
15
 *                                                                         *
 
16
 *   You should have received a copy of the GNU Library General Public     *
 
17
 *   License along with this library; see the file COPYING.LIB. If not,    *
 
18
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
 
19
 *   Suite 330, Boston, MA  02111-1307, USA                                *
 
20
 *                                                                         *
 
21
 ***************************************************************************/
 
22
 
 
23
 
 
24
#ifndef GUI_PRECOMPILED_H
 
25
#define GUI_PRECOMPILED_H
 
26
 
 
27
#include <FCConfig.h>
 
28
 
 
29
// Importing of App classes
 
30
#ifdef FC_OS_WIN32
 
31
# define _TEMPLATE_AppExport __declspec(dllimport)
 
32
# define _TEMPLATE_GuiExport __declspec(dllexport)
 
33
#else // for Linux
 
34
# define _TEMPLATE_AppExport
 
35
# define _TEMPLATE_GuiExport
 
36
#endif
 
37
 
 
38
#ifdef _PreComp_
 
39
 
 
40
// standard
 
41
#include <cstdio>
 
42
#include <cassert>
 
43
 
 
44
// STL
 
45
#include <algorithm>
 
46
#include <iostream>
 
47
#include <list>
 
48
#include <map>
 
49
#include <queue>
 
50
#include <set>
 
51
#include <sstream>
 
52
#include <stack>
 
53
#include <string>
 
54
#include <vector>
 
55
 
 
56
// Xerces
 
57
#include <xercesc/util/XercesDefs.hpp>
 
58
 
 
59
#ifdef FC_OS_WIN32
 
60
# include <windows.h>
 
61
#endif
 
62
 
 
63
// Qt Toolkit
 
64
#include <qaction.h>
 
65
#include <qapplication.h>
 
66
#include <qmainwindow.h>
 
67
#include <qworkspace.h>
 
68
 
 
69
#endif  //_PreComp_
 
70
 
 
71
#endif // __PRECOMPILED_GUI__