]>
Commit | Line | Data |
---|---|---|
53b28675 RR |
1 | #ifndef __NOTEBOOKH_BASE__ |
2 | #define __NOTEBOOKH_BASE__ | |
3 | ||
2049ba38 | 4 | #if defined(__WXMSW__) |
6a415c9a | 5 | #include "wx/msw/notebook.h" |
2049ba38 | 6 | #elif defined(__WXMOTIF__) |
6a415c9a | 7 | #error "wxNotebook not implemented under Motif" |
2049ba38 | 8 | #elif defined(__WXGTK__) |
53b28675 | 9 | #include "wx/gtk/notebook.h" |
b4e76e0d RR |
10 | #elif defined(__WXQT__) |
11 | #include "wx/qt/notebook.h" | |
53b28675 RR |
12 | #endif |
13 | ||
14 | #endif | |
15 | // __NOTEBOOKH_BASE__ |