1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// ---------------------------------------------------------------------------
// Copyright:   (c) 2021 ff. Michael Amrhein (michael@adrhinum.de)
// License:     This program is part of a larger application. For license
//              details please read the file LICENSE.TXT provided together
//              with the application.
// ---------------------------------------------------------------------------
// $Source: src/prelude.rs $
// $Revision: 2022-01-06T15:46:31+01:00 $

//! This module reexports all macros and types needed to define a quantity.

pub use crate::{Amnt, AmountT, Qty, Quantity, SIPrefix, Unit};
#[cfg(feature = "fpdec")]
pub use crate::{Dec, Decimal};
pub use core::ops::{Div, Mul};
pub use qty_macros::quantity;