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

« back to all changes in this revision

Viewing changes to src/plugins/scriptedwizard/resources/wxwidgets/pch/wx_pch.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:      wx_pch.h
 
3
 * Purpose:   Header to create Pre-Compiled Header (PCH)
 
4
 * Author:    [AUTHOR_NAME] ([AUTHOR_EMAIL])
 
5
 * Created:   [NOW]
 
6
 * Copyright: [AUTHOR_NAME] ([AUTHOR_WWW])
 
7
 * License:   
 
8
 **************************************************************/
 
9
 
 
10
#ifndef WX_PCH_H_INCLUDED
 
11
#define WX_PCH_H_INCLUDED
 
12
 
 
13
// basic wxWidgets headers
 
14
#include <wx/wxprec.h>
 
15
 
 
16
#ifdef __BORLANDC__
 
17
    #pragma hdrstop
 
18
#endif
 
19
 
 
20
#ifndef WX_PRECOMP
 
21
    #include <wx/wx.h>
 
22
#endif
 
23
 
 
24
#ifdef WX_PRECOMP
 
25
    // put here all your rarely-changing header files
 
26
#endif // WX_PRECOMP
 
27
 
 
28
#endif // WX_PCH_H_INCLUDED