//
// Author: Robin Dunn
//
-// Created: 25-nov-1998
+// Created: 25-Nov-1998
// RCS-ID: $Id$
// Copyright: (c) 1998 by Total Control Software
// Licence: wxWindows license
%module utils
%{
-#include "helpers.h"
+#include "export.h"
#include <wx/config.h>
#include <wx/fileconf.h>
#include <wx/datetime.h>
%include typemaps.i
%include my_typemaps.i
+// Import some definitions of other classes, etc.
+%import _defs.i
+
%pragma(python) code = "import string"
//---------------------------------------------------------------------------
%{
+ static wxString wxPyEmptyStr("");
+
static PyObject* __EnumerationHelper(bool flag, wxString& str, long index) {
PyObject* ret = PyTuple_New(3);
if (ret) {
//---------------------------------------------------------------------------
%init %{
-
-// wxClassInfo::CleanUpClasses();
-// wxClassInfo::InitializeClasses();
-
+ wxClassInfo::CleanUpClasses();
+ wxClassInfo::InitializeClasses();
%}
//---------------------------------------------------------------------------