2019-11-13 09:08:25 +02:00
|
|
|
use crate::documents::BuildXML;
|
|
|
|
use crate::xml_builder::*;
|
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct BoldCs {}
|
|
|
|
|
|
|
|
impl BoldCs {
|
|
|
|
pub fn new() -> BoldCs {
|
2020-01-24 10:57:14 +02:00
|
|
|
Default::default()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for BoldCs {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {}
|
2019-11-13 09:08:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BuildXML for BoldCs {
|
|
|
|
fn build(&self) -> Vec<u8> {
|
|
|
|
let b = XMLBuilder::new();
|
|
|
|
b.b_cs().build()
|
|
|
|
}
|
|
|
|
}
|