office-gobmx/writerfilter
Mike Kaganski 992ed5bdf9 Avoid useless copy of vectors
Change-Id: Iadab935efff35e1e8e5d70878414da1ed2f0fbf9
Reviewed-on: https://gerrit.libreoffice.org/61795
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2018-10-15 20:47:32 +02:00
..
documentation
inc writerfilter: avoid -Werror=deprecated-copy (GCC trunk towards GCC 9) 2018-07-26 20:43:47 +02:00
qa tdf#42949 Fix some more Include What You Use warnings 2018-01-04 15:51:39 +01:00
source Avoid useless copy of vectors 2018-10-15 20:47:32 +02:00
util
CppunitTest_writerfilter_misc.mk
CppunitTest_writerfilter_rtftok.mk Move (and rename) graphic stuff from svtools to vcl 2018-03-11 13:37:21 +01:00
CustomTarget_source.mk
IwyuFilter_writerfilter.yaml Fix IWYU warnings 2018-06-07 09:27:46 +02:00
Library_writerfilter.mk tdf#79877 perf loading docx file, writerfilter/ improvements 2018-07-10 12:31:43 +02:00
Makefile
Module_writerfilter.mk
README

The writerfilter module contains import filters for Writer, using its UNO API.

Import filter for docx and rtf.

== Module contents ==
 * documentation: RNG schema for the OOXML tokenizer, etc.
 * inc: module-global headers (can be included by any files under source)
 * qa: cppunit tests
 * source: the filters themselves
 * util: UNO passive registration config

== Source contents ==
 * dmapper: the domain mapper, hiding UNO from the tokenizers, used by DOCX and RTF import
   * The incoming traffic of dmapper can be dumped into an XML file in /tmp in
     debug builds, start soffice with the `SW_DEBUG_WRITERFILTER=1`
     environment variable if you want that.
 * filter: the UNO filter service implementations, invoked by UNO and calling
   the dmapper + one of the tokenizers
 * ooxml: the docx tokenizer
 * rtftok: the rtf tokenizer