19 lines
336 B
C++
19 lines
336 B
C++
#pragma once
|
|
|
|
#include <pdfengine/version.hpp>
|
|
#include <string_view>
|
|
|
|
namespace pdfengine {
|
|
|
|
[[nodiscard]] std::string_view engineVersion() noexcept;
|
|
|
|
[[nodiscard]] std::string_view engineBuildInfo() noexcept;
|
|
|
|
[[nodiscard]] bool engineHasPdfium() noexcept;
|
|
|
|
[[nodiscard]] bool engineHasSkia() noexcept;
|
|
|
|
void engineLogBuildInfo();
|
|
|
|
}
|