summaryrefslogtreecommitdiffstats
path: root/src/sp-metric.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-metric.h')
-rw-r--r--src/sp-metric.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/sp-metric.h b/src/sp-metric.h
new file mode 100644
index 000000000..76db44710
--- /dev/null
+++ b/src/sp-metric.h
@@ -0,0 +1,26 @@
+#ifndef INKSCAPE_SP_METRIC_H
+#define INKSCAPE_SP_METRIC_H
+
+/** Known metrics so far. (I don't know why this doesn't include pica.) */
+enum SPMetric {
+ NONE,
+ SP_MM,
+ SP_CM,
+ SP_IN,
+ SP_PT,
+ SP_PX,
+ SP_M
+};
+
+#endif /* !INKSCAPE_SP_METRIC_H */
+
+/*
+ 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:encoding=utf-8:textwidth=99 :