hide copy constructor

This commit is contained in:
john30
2015-01-18 12:08:58 +01:00
parent 4e85f82250
commit 4b94a38c3c
+9
View File
@@ -53,6 +53,15 @@ public:
pthread_cond_destroy(&m_cond); pthread_cond_destroy(&m_cond);
} }
private:
/**
* @brief Hidden copy constructor.
* @param src the object to copy from.
*/
WQueue(const WQueue& src);
public:
/** /**
* @brief add a new item to the end of queue. * @brief add a new item to the end of queue.
* @param item to add. * @param item to add.