~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/wxWidgets3/include/wx/print.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        wx/print.h
 
3
// Purpose:     Base header for printer classes
 
4
// Author:      Julian Smart
 
5
// Modified by:
 
6
// Created:
 
7
// Copyright:   (c) Julian Smart
 
8
// Licence:     wxWindows Licence
 
9
/////////////////////////////////////////////////////////////////////////////
 
10
 
 
11
#ifndef _WX_PRINT_H_BASE_
 
12
#define _WX_PRINT_H_BASE_
 
13
 
 
14
#include "wx/defs.h"
 
15
 
 
16
#if wxUSE_PRINTING_ARCHITECTURE
 
17
 
 
18
#if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
 
19
 
 
20
#include "wx/msw/printwin.h"
 
21
 
 
22
#elif defined(__WXMAC__)
 
23
 
 
24
#include "wx/osx/printmac.h"
 
25
 
 
26
#elif defined(__WXPM__)
 
27
 
 
28
#include "wx/os2/printos2.h"
 
29
 
 
30
#else
 
31
 
 
32
#include "wx/generic/printps.h"
 
33
 
 
34
#endif
 
35
 
 
36
#endif // wxUSE_PRINTING_ARCHITECTURE
 
37
#endif
 
38
    // _WX_PRINT_H_BASE_