Add document PPI export boundary

This commit is contained in:
2026-06-02 11:11:01 +02:00
parent b3710498f3
commit bad2670f87
10 changed files with 333 additions and 7 deletions

14
src/document/ppi_export.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include "document/document.h"
#include "foundation/result.h"
#include <cstddef>
#include <vector>
namespace pp::document {
[[nodiscard]] pp::foundation::Result<std::vector<std::byte>> export_ppi_project_document(
const CanvasDocument& document);
}