Newer
Older
powermon_manager_sw / lib / wxWidgets / include / wx / gtk / private / wrapgtk.h
@Razvan Turiac Razvan Turiac on 8 Jul 765 bytes Initial import
///////////////////////////////////////////////////////////////////////////////
// Name:        wx/gtk/private/wrapgtk.h
// Purpose:     Include gtk/gtk.h without warnings and with compatibility
// Author:      Vadim Zeitlin
// Created:     2018-05-20
// Copyright:   (c) 2018 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence:     wxWindows licence
///////////////////////////////////////////////////////////////////////////////

#ifndef _WX_GTK_PRIVATE_WRAPGTK_H_
#define _WX_GTK_PRIVATE_WRAPGTK_H_

wxGCC_WARNING_SUPPRESS(deprecated-declarations)
wxGCC_WARNING_SUPPRESS(parentheses)
#include <gtk/gtk.h>
wxGCC_WARNING_RESTORE(parentheses)
wxGCC_WARNING_RESTORE(deprecated-declarations)

#include "wx/gtk/private/gtk2-compat.h"

#endif // _WX_GTK_PRIVATE_WRAPGTK_H_