pub( crate ) mod private
{
use crate::*;
#[ allow( dead_code ) ]
#[ derive( Debug, Clone ) ]
pub struct StrokeBrushChangeNew
{
id : Id,
}
impl StrokeBrushChangeNew
{
pub fn new( id : Id ) -> Self
{
Self{ id }
}
}
impl ChangeInterface for StrokeBrushChangeNew
{
}
}
pub mod protected
{
pub use super::
{
orphan::*,
};
}
pub use protected::*;
pub mod orphan
{
pub use super::exposed::*;
}
pub mod exposed
{
pub use super::
{
prelude::*,
private::StrokeBrushChangeNew,
};
}
pub use exposed::*;
pub mod prelude
{
pub use super::private::
{
};
}