summaryrefslogtreecommitdiffstats
path: root/src/io/commandline_io.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-10-31 12:01:20 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-11-05 09:50:11 +0000
commit77a5ffe695e2bc08eec5cd90d64bc1a0df9a4a85 (patch)
treecc7bdc59dec5cce547bc35e3e262fc7b4c312c39 /src/io/commandline_io.h
parentFix for new/removed files. (diff)
downloadinkscape-77a5ffe695e2bc08eec5cd90d64bc1a0df9a4a85.tar.gz
inkscape-77a5ffe695e2bc08eec5cd90d64bc1a0df9a4a85.zip
Remove unused headers in src/io/
Diffstat (limited to 'src/io/commandline_io.h')
-rw-r--r--src/io/commandline_io.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/io/commandline_io.h b/src/io/commandline_io.h
deleted file mode 100644
index 31ce2cd47..000000000
--- a/src/io/commandline_io.h
+++ /dev/null
@@ -1,58 +0,0 @@
-
-// Command line export... should be using normal export.
-
-class InkCommandLineExport {
-
-public:
- enum {
- EXPORT_PLAIN_SVG,
- EXPORT_INKSCAPE_SVG,
- EXPORT_PNG,
- EXPORT_PS,
- EXPORT_EPS,
- EXPORT_PDF,
- EXPORT_LATEX,
- EXPORT_EMF,
- EXPORT_WMF,
- EXPORT_XAML,
- EXPORT_PRINT
- } ExportType;
-
- InkCommandLineExport(ExportType export_type,
- Glib::ustring file_name);
- ~InkCommandLineExport() {};
- do_export();
-
- double export_dpi;
- bool export_area;
- bool export_area_drawing;
- bool export_area_page;
- double export_margin;
- bool export_snap;
- int export_width; // In pixels
- int export_hight; // In pixels
- Glib::ustring export_id;
- bool export_id_only;
- bool export_id_hints;
- Glib::ustring export_background;
- double export_background_opacity;
- int export_ps_level;
- double export_pdf_level;
- bool export_text_to_path;
- bool export_ignore_filters;
-
-private:
- ExportType export_type;
- Glib::ustring file_name;
-}
-
-/*
- Local Variables:
- mode:c++
- c-file-style:"stroustrup"
- c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
- indent-tabs-mode:nil
- fill-column:99
- End:
-*/
-// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :