sofiza 0.3.1

SFZ format parser
Documentation
//! The basic component of an instrument is a region.
//!
//! An instrument then, is defined by one or more regions.
//! Multiple regions can be arranged in a group.
//! Groups allow entering common parameters for multiple regions.

mod group;
mod headers;
mod instrument;
mod opcodes;
mod region;

pub mod types;

pub use group::Group;
pub use headers::Header;
pub use instrument::Instrument;
pub use opcodes::Opcode;
pub use region::Region;
pub use types::{OpcodeMap, OpcodeType};

pub(crate) use opcodes::SfzToken;