~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/codesnippets/wx_pch.h

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef WX_PCH_H_INCLUDED
 
2
#define WX_PCH_H_INCLUDED
 
3
 
 
4
#if ( defined(USE_PCH) && !defined(WX_PRECOMP) )
 
5
    #define WX_PRECOMP
 
6
#endif // USE_PCH
 
7
 
 
8
// basic wxWidgets headers
 
9
#include <wx/wxprec.h>
 
10
 
 
11
#ifdef __BORLANDC__
 
12
        #pragma hdrstop
 
13
#endif
 
14
 
 
15
#ifndef WX_PRECOMP
 
16
        #include <wx/wx.h>
 
17
#endif
 
18
 
 
19
#ifdef USE_PCH
 
20
        // put here all your rarely-changing header files
 
21
#endif // USE_PCH
 
22
 
 
23
#endif // WX_PCH_H_INCLUDED