All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ASCII85Encode.h
Go to the documentation of this file.
1 //---------------------------------------------------------------------------------------
2 // Copyright (c) 2001-2023 by Apryse Software Inc. All Rights Reserved.
3 // Consult legal.txt regarding legal and license information.
4 //---------------------------------------------------------------------------------------
5 #ifndef PDFTRON_H_CPPFiltersASCII85Encode
6 #define PDFTRON_H_CPPFiltersASCII85Encode
7 
8 #include <Filters/Filter.h>
9 #include <Common/Common.h>
10 #include <C/Filters/TRN_Filter.h>
11 
12 namespace pdftron {
13  namespace Filters {
14 
19 class ASCII85Encode : public Filter
20 {
21 public:
22 
26  ASCII85Encode (Filter input_filter, int line_width = 72, size_t buf_sz = 256);
27 };
28 
29 #include <Impl/ASCII85Encode.inl>
30 
31 
32  }; // namespace Filters
33 }; // namespace pdftron
34 
35 #endif // PDFTRON_H_CPPFiltersASCII85Encode
ASCII85Encode(Filter input_filter, int line_width=72, size_t buf_sz=256)