modified: assignment3/as3/main.cpp

This commit is contained in:
mooophy
2014-12-06 16:59:17 +13:00
parent ba9c4a7477
commit 5485acdb69

View File

@@ -91,16 +91,12 @@ public:
explicit Simulator(std::string const fn):
input_{/* read */},
output_{/* construct with number of output ports */},
output_thread_{},
mutex_{}
output_{/* construct with number of output ports */}
{}
private:
Pool input_;
Pool output_;
std::thread output_thread_;
mutable std::mutex mutex_;
};
}//namespace