2017-03-12 23:31:43 +00:00
|
|
|
import { XmlComponent } from "../../../../xml-components";
|
2017-03-13 00:02:56 +00:00
|
|
|
import { Graphic } from "./graphic";
|
2017-03-12 23:31:43 +00:00
|
|
|
|
|
|
|
export class Inline extends XmlComponent {
|
|
|
|
|
2017-03-13 00:02:56 +00:00
|
|
|
constructor(referenceId: number) {
|
2017-03-12 23:31:43 +00:00
|
|
|
super("wp:inline");
|
2017-03-13 00:02:56 +00:00
|
|
|
this.root.push(new Graphic(referenceId));
|
2017-03-12 23:31:43 +00:00
|
|
|
}
|
|
|
|
}
|