Skip to main content

easyofd_core/annotation/
mod.rs

1//! 注释子包(GB/T 33190 第 16 章)。
2//!
3//! 提供 OFD 文档注释相关的数据类型。
4
5mod ann_page;
6mod annot;
7mod annot_type;
8mod annotations;
9mod appearance;
10mod page_annot;
11
12pub use ann_page::AnnPage;
13pub use annot::Annot;
14pub use annot_type::AnnotType;
15pub use annotations::Annotations;
16pub use appearance::Appearance;
17pub use page_annot::PageAnnot;