39 lines
636 B
C
39 lines
636 B
C
/**
|
|
* Common header for widget classes
|
|
*/
|
|
|
|
#ifndef WX_COMMON_H
|
|
#define WX_COMMON_H
|
|
|
|
#include "common.h"
|
|
|
|
#ifndef __WXMAC__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wpotentially-evaluated-expression"
|
|
#endif
|
|
|
|
#ifdef WX_PRECOMP
|
|
#include "wx_pch.h"
|
|
#endif
|
|
#ifndef WX_PRECOMP
|
|
#include <wx/wx.h>
|
|
#endif
|
|
|
|
// Common helpers/functionality
|
|
#include <wx/debug.h>
|
|
#include <wx/cmdline.h>
|
|
#include <wx/config.h>
|
|
#include <wx/stdpaths.h>
|
|
#include <wx/filename.h>
|
|
#include <wx/artprov.h>
|
|
|
|
#ifndef __WXMAC__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
|
|
// Tyro-specific variables
|
|
#include "definitions.h"
|
|
|
|
#endif /* WX_COMMON_H */
|
|
|