bugfix - add stl-model.h wrappers, to provide more control over STL
[c11tester.git] / workqueue.h
index 3e2481b97eb2080437beb02e22863db25fdbfac3..a25e4fee60f8718180026278570834ab6781a9a1 100644 (file)
@@ -6,8 +6,9 @@
 #ifndef __WORKQUEUE_H__
 #define __WORKQUEUE_H__
 
-#include "stl_wrappers.h"
+#include <list>
 #include "mymemory.h"
+#include "stl-model.h"
 
 class ModelAction;
 
@@ -102,6 +103,6 @@ class MOEdgeWorkEntry : public WorkQueueEntry {
 };
 
 /** @brief typedef for the work queue type */
-typedef model_list< WorkQueueEntry > work_queue_t;
+typedef ModelList<WorkQueueEntry> work_queue_t;
 
 #endif /* __WORKQUEUE_H__ */