make cpset, pset_new API private
[libfirm] / include / libfirm / adt / pqueue.h
index 8ff6040..35e585a 100644 (file)
  * @author  Christian Wuerdig
  * @brief   Implementation of a priority queue. This is the ported version of
             the original Java implementation by Matthias Braun.
- * @version $Id$
  */
 #ifndef FIRM_ADT_PQUEUE_H
 #define FIRM_ADT_PQUEUE_H
 
 #include "../begin.h"
 
+/**
+ * @ingroup adt
+ * @defgroup pqueue  Priority Queue
+ * A priority queue.
+ * Implementation based on a heap datastructure
+ * @{
+ */
+
+/** priority queue */
 typedef struct pqueue_t pqueue_t;
 
 /**
@@ -73,6 +81,8 @@ FIRM_API size_t pqueue_length(const pqueue_t *q);
  */
 FIRM_API int pqueue_empty(const pqueue_t *q);
 
+/** @} */
+
 #include "../end.h"
 
 #endif