Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DESKTOP-U434MT0\hiro committed May 28, 2024
1 parent b34d3bc commit 3c34cb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions src/structs/drawing/extension_list.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
// a:extLst
use quick_xml::events::BytesStart;
use quick_xml::events::Event;
use quick_xml::Reader;
use quick_xml::Writer;
use quick_xml::events::Event;
use reader::driver::*;
use std::io::Cursor;
use writer::driver::*;

#[derive(Clone, Default, Debug)]
pub struct ExtensionList {

}
pub struct ExtensionList {}
impl ExtensionList {

pub(crate) fn set_attributes<R: std::io::BufRead>(
&mut self,
reader: &mut Reader<R>,
Expand All @@ -29,7 +26,5 @@ impl ExtensionList {
);
}

pub(crate) fn write_to(&self, writer: &mut Writer<Cursor<Vec<u8>>>) {

}
pub(crate) fn write_to(&self, writer: &mut Writer<Cursor<Vec<u8>>>) {}
}
2 changes: 1 addition & 1 deletion src/structs/drawing/spreadsheet/shape_properties.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// xdr:spPr
use super::super::EffectList;
use super::super::ExtensionList;
use super::super::NoFill;
use super::super::Outline;
use super::super::PresetGeometry;
use super::super::SolidFill;
use super::super::Transform2D;
use super::super::ExtensionList;
use quick_xml::events::{BytesStart, Event};
use quick_xml::Reader;
use quick_xml::Writer;
Expand Down

0 comments on commit 3c34cb8

Please sign in to comment.