DocWire SDK
DocWire SDK: Award-winning modern data processing in C++20. SourceForge Community Choice & Microsoft support. AI-driven processing. Supports nearly 100 data formats, including email boxes and OCR. Boost efficiency in text extraction, web data extraction, data mining, document analysis. Offline processing possible for security and confidentiality
office_formats_parser.h
1 /*********************************************************************************************************************************************/
2 /* DocWire SDK: Award-winning modern data processing in C++20. SourceForge Community Choice & Microsoft support. AI-driven processing. */
3 /* Supports nearly 100 data formats, including email boxes and OCR. Boost efficiency in text extraction, web data extraction, data mining, */
4 /* document analysis. Offline processing possible for security and confidentiality */
5 /* */
6 /* Copyright (c) SILVERCODERS Ltd, http://silvercoders.com */
7 /* Project homepage: https://github.com/docwire/docwire */
8 /* */
9 /* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-DocWire-Commercial */
10 /*********************************************************************************************************************************************/
11 
12 
13 #ifndef DOCWIRE_OFFICE_FORMATS_PARSER_H
14 #define DOCWIRE_OFFICE_FORMATS_PARSER_H
15 
16 #include "doc_parser.h"
17 #include "html_parser.h"
18 #include "iwork_parser.h"
19 #include "odfxml_parser.h"
20 #include "pdf_parser.h"
21 #include "xls_parser.h"
22 #include "xlsb_parser.h"
23 #include "odf_ooxml_parser.h"
24 #include "parsing_chain.h"
25 #include "ppt_parser.h"
26 #include "rtf_parser.h"
27 #include "txt_parser.h"
28 #include "xml_parser.h"
29 
30 namespace docwire
31 {
32 
37 template <safety_policy safety_level = default_safety_level>
39 {
40  public:
45  : parsing_chain{
46  html_parser{} |
47  doc_parser{} |
48  pdf_parser{} |
49  xls_parser{} |
50  xlsb_parser{} |
51  iwork_parser{} |
52  ppt_parser{} |
53  rtf_parser{} |
54  odf_ooxml_parser<safety_level>{} |
56  xml_parser<safety_level>{} |
57  txt_parser{}
58  }
59  {}
60 };
61 
62 } // namespace docwire
63 
64 #endif //DOCWIRE_OFFICE_FORMATS_PARSER_H
A parser for ODF and OOXML document formats.
A parser for flat ODF XML documents.
Definition: odfxml_parser.h:29
A composite parser handling various office document formats.
office_formats_parser()
Constructs the composite parser with a predefined chain of format parsers.
The main namespace for the DocWire SDK.
Definition: ai_elements.h:19