blob: 3ad748c44c95311c6717f07e77ef7a1d9012a8c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#ifndef COMMONHEADERS_H_INCLUDED
#define COMMONHEADERS_H_INCLUDED
// For compilers that support precompilation, includes "wx.h".
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
// Include your minimal set of headers here, or wx.h
#include <wx/wx.h>
#endif
#include <wx/dynlib.h>
#include <wx/dir.h>
#include <wx/log.h>
#include <list>
#include "../api/pluginapi.h"
#include "services.h"
#include "modules.h"
#endif // COMMONHEADERS_H_INCLUDED
|