I have a small template class with a non-static member of type boost::shared_mutex. Whenever I try to compile it, I get the error:
'boost::shared_mutex::shared_mutex' : cannot access private member declared in class 'boost::shared_mutex'.
boost::shared_mutex really has a private nested class shared_mutex, but I don't understand why this problem arose.
Here's my class:
#include <boost/thread.hpp>
#include <boost/thread/shared_mutex.hpp>
#include <queue>
template <typename T>
class CThreadSafeQueue
{
public:
CThreadSafeQueue();
private:
boost::mutex _sharedMutex;
std::queue<T> _queue;
};
template <typename T>
CThreadSafeQueue<T>::CThreadSafeQueue()
{
}
P. S. The same happens with a regular `boost::mutex'.
P. P. S. I have another, non-template class, in which I have no problem using either mutex type.
CThreadSafeQueue<int> x;) with boost 1.47.0 using compiler VC2010. – hmjd Nov 27 '11 at 21:51CThreadSafeQueue<int>copy constructor, as @tune2fs has already indicated. – hmjd Nov 27 '11 at 22:07