improve test/makemain.sh, move queu_pop code to vector class
[cgds.git] / src / Vector.h
index d3fe04c..985ac10 100644 (file)
@@ -105,6 +105,13 @@ void vector_pop(
        Vector* vector ///< "this" pointer.
 );
 
+/**
+ * @brief Remove the first element.
+ */
+void vector_pop_first(
+       Vector* vector ///< "this" pointer.
+);
+
 /**
  * @brief Get the element at given index.
  */