29 lines
658 B
C
29 lines
658 B
C
/***************************************************************
|
|
* Name: wx_pch.h
|
|
* Purpose: Header to create Pre-Compiled Header (PCH)
|
|
* Author: [AUTHOR_NAME] ([AUTHOR_EMAIL])
|
|
* Created: [NOW]
|
|
* Copyright: [AUTHOR_NAME] ([AUTHOR_WWW])
|
|
* License:
|
|
**************************************************************/
|
|
|
|
#ifndef WX_PCH_H_INCLUDED
|
|
#define WX_PCH_H_INCLUDED
|
|
|
|
// basic wxWidgets headers
|
|
#include <wx/wxprec.h>
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
#ifdef WX_PRECOMP
|
|
// put here all your rarely-changing header files
|
|
#endif // WX_PRECOMP
|
|
|
|
#endif // WX_PCH_H_INCLUDED
|