]>
Commit | Line | Data |
---|---|---|
1 | #ifndef _TOOLBAR_H_BASE_ | |
2 | #define _TOOLBAR_H_BASE_ | |
3 | ||
4 | #if defined(__WXMSW__) && defined(__WIN95__) | |
5 | # include "wx/tbar95.h" | |
6 | # define wxToolBar wxToolBar95 | |
7 | # define classwxToolBar classwxToolBar95 | |
8 | #elif defined(__WXMSW__) | |
9 | # include "wx/tbarmsw.h" | |
10 | # define wxToolBar wxToolBarMSW | |
11 | # define classwxToolBar classwxToolBarMSW | |
12 | #elif defined(__WXGTK__) | |
13 | # include "wx/gtk/tbargtk.h" | |
14 | # define wxToolBar wxToolBarGTK | |
15 | # define classwxToolBar classwxToolBarGTK | |
16 | #endif | |
17 | ||
18 | #endif | |
19 | // _TOOLBAR_H_BASE_ |