Skip to main content

regxml_dict/
lib.rs

1//! RegXML metadictionary and definition types (SMPTE ST 2001-1).
2//!
3//! Provides [`Definition`], [`MetaDictionary`], [`MetaDictionaryCollection`],
4//! the [`DefinitionResolver`] trait, and the SMPTE register XML importer.
5
6pub mod definition;
7pub mod error;
8pub mod importer;
9pub mod labels;
10pub mod meta_dictionary;
11pub mod resolver;
12
13pub use definition::{ClassDefinition, Definition, PropertyDefinition, TypeDefinition};
14pub use error::DictError;
15pub use labels::LabelsRegister;
16pub use meta_dictionary::{MetaDictionary, MetaDictionaryCollection};
17pub use resolver::DefinitionResolver;