diff options
Diffstat (limited to 'syncQueue.h')
-rw-r--r-- | syncQueue.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/syncQueue.h b/syncQueue.h index d76565b..6aa6fe0 100644 --- a/syncQueue.h +++ b/syncQueue.h @@ -34,6 +34,8 @@ #include <deque> #include <queue> +#include "syncCommand.h" + #include "threadUtils.hpp" #include "datatypes.h" @@ -44,6 +46,7 @@ public: ~SyncQueue() {}; void push(const std::string & ); + void push(const SyncCommand & ); std::string pop(); bool empty(); |