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
with_date_format.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: GPL-2.0-only OR LicenseRef-DocWire-Commercial */
10 /*********************************************************************************************************************************************/
11 
12 #ifndef DOCWIRE_WITH_DATE_FORMAT_H
13 #define DOCWIRE_WITH_DATE_FORMAT_H
14 
15 #include <string_view>
16 
21 {
22 
24 struct iso8601 { std::string_view v; };
25 
27 struct openoffice_legacy { std::string_view v; };
28 
30 struct asn1 { std::string_view v; };
31 
32 } // namespace with::date_format
33 
34 #endif // DOCWIRE_WITH_DATE_FORMAT_H
Tags for specifying date formats during conversion.
ISO 8601 format (e.g., "2023-10-27T10:00:00").