]>
Commit | Line | Data |
---|---|---|
32b8ec41 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: gtk/clipbrd.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
77ffb593 | 7 | // Licence: wxWidgets licence |
32b8ec41 VZ |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 | 10 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
32b8ec41 VZ |
11 | #pragma implementation "clipbrd.h" |
12 | #endif | |
13 | ||
a246f95e VS |
14 | // For compilers that support precompilation, includes "wx.h". |
15 | #include "wx/wxprec.h" | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
32b8ec41 VZ |
21 | #include "wx/clipbrd.h" |
22 | ||
23 | #if wxUSE_CLIPBOARD | |
24 | ||
f41ed3c4 | 25 | // FIXME_MGL |
32b8ec41 VZ |
26 | |
27 | IMPLEMENT_DYNAMIC_CLASS(wxClipboard,wxObject) | |
28 | ||
29 | #endif | |
30 | // wxUSE_CLIPBOARD | |
31 |