25 lines
327 B
C
25 lines
327 B
C
/**
|
|
* Common header for widget classes
|
|
*/
|
|
|
|
#ifndef WX_COMMON_H
|
|
#define WX_COMMON_H
|
|
|
|
#include "common.h"
|
|
|
|
#ifdef WX_PRECOMP
|
|
#include "wx_pch.h"
|
|
#endif
|
|
#ifndef WX_PRECOMP
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
#include <wx/stdpaths.h>
|
|
#include <wx/filename.h>
|
|
#include <wx/artprov.h>
|
|
|
|
#include "definitions.h"
|
|
|
|
#endif /* WX_COMMON_H */
|
|
|