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