| 55 | }; |
| 56 | |
| 57 | Store::Store(const StoreOption &opt) : impl_(new StoreImpl()) { |
| 58 | assert(impl_); |
| 59 | impl_->opt = opt; |
| 60 | } |
| 61 | |
| 62 | Store::~Store() { |
| 63 | if (impl_->keep_sync_thread) impl_->keep_sync_thread->Stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected