//! DWG file header infrastructure
//!
//! Provides file header writers for DWG file format variants:
//! - **AC15** (R13–R2000): Linear format with sequential sections
//! - **AC18** (R2004+): Page-based format with LZ77 compression
//! - **AC21** (R2007): Page-based format with RS encoding + LZ77 AC21 compression
//!
//! Also provides section definition constants, descriptor structs,
//! and locator record structs used by all formats.
pub use DwgFileHeaderWriterAC15;
pub use DwgFileHeaderWriterAC18;
pub use DwgFileHeaderWriterAC21;
pub use names as section_names;
pub use ;