summaryrefslogtreecommitdiff
path: root/writerfilter/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-05-23 23:59:55 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-05-27 11:25:56 +0200
commit846b22a6c606a425fc8749d551d07020ca6201a9 (patch)
treeda15ea97bd7220232c3a360d3fc16b2ebe862c64 /writerfilter/inc
parent6c80a64574879415a093e8c3054528ce037beaf4 (diff)
Remove the old unused RTF tokenizer
Diffstat (limited to 'writerfilter/inc')
-rw-r--r--writerfilter/inc/rtftok/RTFInputSource.hxx45
-rw-r--r--writerfilter/inc/rtftok/RTFParseException.hxx45
-rw-r--r--writerfilter/inc/rtftok/RTFScanner.hxx68
-rw-r--r--writerfilter/inc/rtftok/RTFScannerHandler.hxx53
4 files changed, 0 insertions, 211 deletions
diff --git a/writerfilter/inc/rtftok/RTFInputSource.hxx b/writerfilter/inc/rtftok/RTFInputSource.hxx
deleted file mode 100644
index 5a0ca071ab1a..000000000000
--- a/writerfilter/inc/rtftok/RTFInputSource.hxx
+++ /dev/null
@@ -1,45 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org 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 version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef INCLUDED_RTFINPUTSOURCE_HXX
-#define INCLUDED_RTFINPUTSOURCE_HXX
-
-namespace writerfilter { namespace rtftok {
-
-class RTFInputSource
-{
-public:
- virtual int read(void *buffer, int maxLen) = 0;
-};
-
-} } /* end namespace writerfilter::rtftok */
-
-
-#endif /* INCLUDED_RTFINPUTSOURCE_HXX */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/inc/rtftok/RTFParseException.hxx b/writerfilter/inc/rtftok/RTFParseException.hxx
deleted file mode 100644
index 338711e57cb7..000000000000
--- a/writerfilter/inc/rtftok/RTFParseException.hxx
+++ /dev/null
@@ -1,45 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org 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 version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef INCLUDED_RTFPARSEEXCEPTION_HXX
-#define INCLUDED_RTFPARSEEXCEPTION_HXX
-
-namespace writerfilter { namespace rtftok {
-
-class RTFParseException
-{
-public:
- RTFParseException(char *message);
-};
-
-} } /* end namespace writerfilter::rtftok */
-
-
-#endif /* INCLUDED_RTFPARSEEXCEPTION_HXX */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/inc/rtftok/RTFScanner.hxx b/writerfilter/inc/rtftok/RTFScanner.hxx
deleted file mode 100644
index 9f1e2c655402..000000000000
--- a/writerfilter/inc/rtftok/RTFScanner.hxx
+++ /dev/null
@@ -1,68 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org 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 version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef INCLUDED_RTFSCANNER_HXX
-#define INCLUDED_RTFSCANNER_HXX
-
-#include <WriterFilterDllApi.hxx>
-#include <vector>
-#include <rtftok/RTFInputSource.hxx>
-#include <rtftok/RTFScannerHandler.hxx>
-
-namespace writerfilter { namespace rtftok {
-
-class WRITERFILTER_DLLPUBLIC RTFScanner {
-public:
- RTFScanner(RTFScannerHandler &eventHandler_) : eventHandler(eventHandler_) {};
- virtual ~RTFScanner() { }
-
- const char* YYText() { return yytext; }
- int YYLeng() { return yyleng; }
-
- virtual int yylex() = 0;
-
- int lineno() const { return yylineno; }
-
-protected:
- char* yytext;
- int yyleng;
- int yylineno; // only maintained if you use %option yylineno
- int yy_flex_debug; // only has effect with -d or "%option debug"
- RTFScannerHandler &eventHandler;
-
-
-public:
- static writerfilter::rtftok::RTFScanner* createRTFScanner(writerfilter::rtftok::RTFInputSource& inputSource, writerfilter::rtftok::RTFScannerHandler &eventHandler);
-};
-
-} } /* end namespace writerfilter::rtftok */
-
-
-#endif /* INCLUDED_RTFSCANNER_HXX */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/writerfilter/inc/rtftok/RTFScannerHandler.hxx b/writerfilter/inc/rtftok/RTFScannerHandler.hxx
deleted file mode 100644
index aa423439fa53..000000000000
--- a/writerfilter/inc/rtftok/RTFScannerHandler.hxx
+++ /dev/null
@@ -1,53 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org 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 version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-#ifndef INCLUDED_RTFSCANNERHANDLER_HXX
-#define INCLUDED_RTFSCANNERHANDLER_HXX
-
-namespace writerfilter { namespace rtftok {
-
-class RTFScannerHandler
-{
-public:
- virtual void dest(char*token, char*value)=0;
- virtual void ctrl(char*token, char*value)=0;
- virtual void lbrace(void)=0;
- virtual void rbrace(void)=0;
- virtual void addSpaces(int count)=0;
- virtual void addBinData(unsigned char data)=0;
- virtual void addChar(char ch) =0;
- virtual void addCharU(sal_Unicode ch) =0;
- virtual void addHexChar(char* hexch) =0;
-
-};
-
-} } /* end namespace writerfilter::rtftok */
-
-#endif /* INCLUDED_RTFSCANNERHANDLER_HXX */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */