#pragma hdrstop
#endif
+#if wxUSE_IOSTREAMH
#include <fstream.h>
+#else
+#include <fstream>
+# ifdef _MSC_VER
+ using namespace std;
+# endif
+#endif
+
#include <stdarg.h>
#include <ctype.h>
#include <string.h>
extern "C" void LexFromFile(FILE *fd);
extern "C" void LexFromString(char *buf);
+
wxExprDatabase *thewxExprDatabase = NULL;
wxExprErrorHandler currentwxExprErrorHandler;
-IMPLEMENT_DYNAMIC_CLASS(wxExprDatabase, wxList)
-
wxExpr::wxExpr(const wxString& functor)
{
type = wxExprList;
}
}
-// wxExpr 'database' (list of expressions)
+/*
+ * wxExpr 'database' (list of expressions)
+ */
+
+#if !USE_SHARED_LIBRARIES
+IMPLEMENT_DYNAMIC_CLASS(wxExprDatabase, wxList)
+#endif
+
wxExprDatabase::wxExprDatabase(wxExprErrorHandler handler)
{
position = NULL;