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
pst_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_PST_PARSER_H
14 #define DOCWIRE_PST_PARSER_H
15 
16 #include "mail_export.h"
17 
18 #include "chain_element.h"
19 #include "pimpl.h"
20 
21 namespace docwire
22 {
23 
24 class DOCWIRE_MAIL_EXPORT pst_parser : public chain_element, public with_pimpl<pst_parser>
25 {
26 private:
29 
30 public:
31  pst_parser();
32  continuation operator()(message_ptr msg, const message_callbacks& emit_message) override;
33  bool is_leaf() const override { return false; }
34 };
35 
36 } // namespace docwire
37 
38 #endif //DOCWIRE_PST_PARSER_H
bool is_leaf() const override
Check if chain element is a leaf (last element which doesn't produce any messages)....
Definition: pst_parser.h:33
The main namespace for the DocWire SDK.
Definition: ai_elements.h:19