Implemented long variable names a la spss V12.
[pspp-builds.git] / src / format.h
index 470c45cbf7117308702130afca56223a034098a2..7b8b432eec954ecd07aafff1de4462b1297bb1bc 100644 (file)
@@ -71,6 +71,24 @@ struct fmt_spec
     int d;                     /* Number of implied decimal places. */
   };
 
+
+enum alignment 
+  {
+    ALIGN_LEFT = 0,
+    ALIGN_RIGHT = 1,
+    ALIGN_CENTRE = 2
+  };
+
+
+enum measure
+  {
+    MEASURE_NOMINAL=1,
+    MEASURE_ORDINAL=2,
+    MEASURE_SCALE=3
+  };
+
+
+
 /* Descriptions of all the display formats above. */
 extern struct fmt_desc formats[];