]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_NOTEBOOK_H_BASE_ |
2 | #define _WX_NOTEBOOK_H_BASE_ | |
53b28675 | 3 | |
2049ba38 | 4 | #if defined(__WXMSW__) |
6a415c9a | 5 | #include "wx/msw/notebook.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
34138703 | 7 | #include "wx/motif/notebook.h" |
2049ba38 | 8 | #elif defined(__WXGTK__) |
53b28675 | 9 | #include "wx/gtk/notebook.h" |
b4e76e0d RR |
10 | #elif defined(__WXQT__) |
11 | #include "wx/qt/notebook.h" | |
34138703 JS |
12 | #elif defined(__WXMAC__) |
13 | #include "wx/mac/notebook.h" | |
14 | #elif defined(__WXSTUBS__) | |
15 | #include "wx/stubs/notebook.h" | |
53b28675 RR |
16 | #endif |
17 | ||
18 | #endif | |
34138703 | 19 | // _WX_NOTEBOOK_H_BASE_ |