LeviLamina
Loading...
Searching...
No Matches
PDFWriter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7struct PDFOptions;
8struct PDFError;
9// clang-format on
10
11class PDFWriter : public ::std::enable_shared_from_this<::PDFWriter> {
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 virtual void exportImagesToAlbum(::PDFOptions, ::std::function<void(::std::optional<::PDFError>)>) = 0;
16
17 virtual ~PDFWriter() = default;
18 // NOLINTEND
19
20public:
21 // virtual function thunks
22 // NOLINTBEGIN
23
24 // NOLINTEND
25};
Definition PDFWriter.h:11
Definition PDFError.h:5
Definition PDFOptions.h:5