summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/xml/sax
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-10 11:44:51 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-10 11:44:51 +0000
commita8c16d4b68dba9721ede9e3ae1a84b654c8a4feb (patch)
treef1c8da61598241f8a6ccf090138aa0231949b0b2 /offapi/com/sun/star/xml/sax
parent782d6efff8d5a44eb3b23a31210efac3e0fd6683 (diff)
INTEGRATION: CWS xmlfilter02 (1.1.2); FILE ADDED
2007/03/01 17:32:03 cl 1.1.2.1: new consts for fast tokens
Diffstat (limited to 'offapi/com/sun/star/xml/sax')
-rw-r--r--offapi/com/sun/star/xml/sax/FastToken.idl67
1 files changed, 67 insertions, 0 deletions
diff --git a/offapi/com/sun/star/xml/sax/FastToken.idl b/offapi/com/sun/star/xml/sax/FastToken.idl
new file mode 100644
index 000000000000..d11cbab4c67b
--- /dev/null
+++ b/offapi/com/sun/star/xml/sax/FastToken.idl
@@ -0,0 +1,67 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: FastToken.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2008-01-10 12:44:51 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 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
+ *
+ ************************************************************************/
+#ifndef __com_sun_star_xml_sax_XFastToken_idl__
+#define __com_sun_star_xml_sax_XFastToken_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+//=============================================================================
+
+module com { module sun { module star { module xml { module sax {
+
+//============================================================================
+
+constants FastToken
+{
+ //-------------------------------------------------------------------------
+
+ /** specifies an unknown token.
+ */
+ const long DONTKNOW = -1;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies the first namespace token
+ */
+ const long NAMESPACE = 0x00010000;
+};
+
+//=============================================================================
+
+}; }; }; }; };
+
+#endif