summaryrefslogtreecommitdiff
path: root/xml2cmp
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2002-12-11 13:36:27 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2002-12-11 13:36:27 +0000
commit8ec552a0cf65371de3022480d6609eac06736ba3 (patch)
treea0c41041c120fbe61ac4882b15b92e10a5b78b5b /xml2cmp
parent7cc55d3bb247c44bba7b765ba686f2ffc4af8d8c (diff)
#100000# Bad trick seen from NP: badcast.cxx to get std::bad_cast for windows.
Diffstat (limited to 'xml2cmp')
-rw-r--r--xml2cmp/source/support/badcast.cxx79
-rw-r--r--xml2cmp/source/support/makefile.mk7
2 files changed, 83 insertions, 3 deletions
diff --git a/xml2cmp/source/support/badcast.cxx b/xml2cmp/source/support/badcast.cxx
new file mode 100644
index 000000000000..245ba56e9d5f
--- /dev/null
+++ b/xml2cmp/source/support/badcast.cxx
@@ -0,0 +1,79 @@
+/*************************************************************************
+ *
+ * $RCSfile: badcast.cxx,v $
+ *
+ * $Revision: 1.1 $
+ *
+ * last change: $Author: rt $ $Date: 2002-12-11 14:36:26 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (the "License"); You may not use this file
+ * except in compliance with the License. You may obtain a copy of the
+ * License at http://www.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+
+
+/* Include this for instantiating bad-cast,
+ due to problems with WNT-STL-headers.
+*/
+
+#ifdef WNT
+
+#define _NTSDK
+#include<typeinfo>
+
+_STD_BEGIN
+bad_cast G_Dummy_Inst_bad_cast;
+_STD_END
+#endif // WNT
+
+
+
diff --git a/xml2cmp/source/support/makefile.mk b/xml2cmp/source/support/makefile.mk
index cd04faeae601..9a8ea9b528f6 100644
--- a/xml2cmp/source/support/makefile.mk
+++ b/xml2cmp/source/support/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.4 $
+# $Revision: 1.5 $
#
-# last change: $Author: np $ $Date: 2002-11-14 14:03:29 $
+# last change: $Author: rt $ $Date: 2002-12-11 14:36:27 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -82,7 +82,8 @@ OBJFILES= \
$(OBJ)$/cmdline.obj \
$(OBJ)$/heap.obj \
$(OBJ)$/sistr.obj \
- $(OBJ)$/syshelp.obj
+ $(OBJ)$/syshelp.obj \
+ $(OBJ)$/badcast.obj