25 class VSG_DECLSPEC OperationThreads :
public Inherit<Object, OperationThreads>
29 OperationThreads(
const OperationThreads&) =
delete;
30 OperationThreads& operator=(
const OperationThreads& rhs) =
delete;
34 queue->add(operation);
37 template<
typename Iterator>
38 void add(Iterator begin, Iterator end)
40 queue->add(begin, end);
50 using Threads = std::list<std::thread>;
56 virtual ~OperationThreads();