| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: sercore.h |
| 3 | // Purpose: Serialization: core classes |
| 4 | // Author: Guilhem Lavaux |
| 5 | // Modified by: |
| 6 | // Created: July 1998 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) 1998 Guilhem Lavaux |
| 9 | // Licence: wxWindows license |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef __SERCORE_H__ |
| 13 | #define __SERCORE_H__ |
| 14 | |
| 15 | #ifdef __GNUG__ |
| 16 | #pragma interface |
| 17 | #endif |
| 18 | |
| 19 | #include <wx/serbase.h> |
| 20 | |
| 21 | DECLARE_SERIAL_CLASS(wxList, wxObject) |
| 22 | DECLARE_SERIAL_CLASS(wxHashTable, wxObject) |
| 23 | |
| 24 | #endif |