// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #include "removedonecontext.h" namespace proton { RemoveDoneContext::RemoveDoneContext(std::shared_ptr token, std::shared_ptr done_callback, IPendingLidTracker::Token uncommitted) : OperationDoneContext(std::move(token), std::move(done_callback)), _uncommitted(std::move(uncommitted)) { } RemoveDoneContext::~RemoveDoneContext() { } } // namespace proton