Kaynağa Gözat

vlib: doxygen cosmetics (improve constraint struct)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@56087 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 12 yıl önce
ebeveyn
işleme
0fe8236077
1 değiştirilmiş dosya ile 13 ekleme ve 6 silme
  1. 13 6
      include/vect/dig_structs.h

+ 13 - 6
include/vect/dig_structs.h

@@ -1343,25 +1343,32 @@ struct Map_info
     /* constraints for reading in lines  (not polys yet) */
 
     /*!
-      \brief Constraints (region, type, field)
-
-      Note: Non-zero flag to enable given constraint.
+      \brief Constraints for sequential feature access
     */
     struct {
 	/*!
-	  \brief Region constraint
+	  \brief Non-zero value to enable region constraint
 	*/
 	int region_flag;
+        /*!
+          \brief Region (bbox) constraint
+        */
 	struct bound_box box;
 	/*!
-	  \brief Type constraint
+	  \brief Non-zero value to enable feature type constraint
 	*/
 	int type_flag;
+        /*!
+          \brief Feature type constraint
+        */
 	int type;
 	/*!
-	  \brief Field constraint
+	  \brief Non-zero value to enable field constraint
 	*/
 	int field_flag;
+        /*!
+          \brief Field number constraint (see line_cats structure)
+        */
 	int field;
     } constraint;