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
html_exporter.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 #ifndef DOCWIRE_HTML_EXPORTER_H
13 #define DOCWIRE_HTML_EXPORTER_H
14 
15 #include "chain_element.h"
16 #include "html_export.h"
17 
18 namespace docwire
19 {
20 
24 class DOCWIRE_HTML_EXPORT html_exporter: public chain_element, public with_pimpl<html_exporter>
25 {
26 public:
27 
28  html_exporter();
29 
30  virtual continuation operator()(message_ptr msg, const message_callbacks& emit_message) override;
31 
32  bool is_leaf() const override
33  {
34  return false;
35  }
36 
37 private:
39 };
40 
41 } // namespace docwire
42 
43 #endif //DOCWIRE_HTML_EXPORTER_H
Exports data to HTML format.
Definition: html_exporter.h:25
bool is_leaf() const override
Check if chain element is a leaf (last element which doesn't produce any messages)....
Definition: html_exporter.h:32
The main namespace for the DocWire SDK.
Definition: ai_elements.h:19