summaryrefslogtreecommitdiffstats
path: root/src/sp-marker-loc.h
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-01-16 02:36:01 +0000
committermental <mental@users.sourceforge.net>2006-01-16 02:36:01 +0000
commit179fa413b047bede6e32109e2ce82437c5fb8d34 (patch)
treea5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/sp-marker-loc.h
downloadinkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz
inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/sp-marker-loc.h')
-rw-r--r--src/sp-marker-loc.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/sp-marker-loc.h b/src/sp-marker-loc.h
new file mode 100644
index 000000000..1b763f724
--- /dev/null
+++ b/src/sp-marker-loc.h
@@ -0,0 +1,29 @@
+#ifndef SEEN_SP_MARKER_LOC_H
+#define SEEN_SP_MARKER_LOC_H
+
+/**
+ * These enums are to allow us to have 4-element arrays that represent a set of marker locations
+ * (all, start, mid, and end). This allows us to iterate through the array in places where we need
+ * to do a process across all of the markers, instead of separate code stanzas for each.
+ */
+enum SPMarkerLoc {
+ SP_MARKER_LOC,
+ SP_MARKER_LOC_START,
+ SP_MARKER_LOC_MID,
+ SP_MARKER_LOC_END,
+ SP_MARKER_LOC_QTY
+};
+
+
+#endif /* !SEEN_SP_MARKER_LOC_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 :