/*!
A simple implementation of the `ModelWriter` trait that simply uses the Debug trait. This allows
the easy swapping in of a sanity check as different reader/writer implementations are used.
*/
use crateModelWriter;
use crateModel;
use Write;
// ------------------------------------------------------------------------------------------------
// Public Types
// ------------------------------------------------------------------------------------------------
///
/// Simple implementation of the `ModelWriter` trait that uses the fact that all the core model
/// structures and enumerations implement `Debug`.
///
// ------------------------------------------------------------------------------------------------
// Implementations
// ------------------------------------------------------------------------------------------------