summaryrefslogtreecommitdiffstats
path: root/searchcore/src/apps/vespa-feed-bm/bm_storage_link_context.h
blob: f2df20f1f6685144fa15bf2aba5169d3af2766bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

namespace feedbm {

class BmStorageLink;

/*
 * This context is initialized by BmStorageChainBuilder.
 */
struct BmStorageLinkContext
{
    BmStorageLink* bm_link;
    BmStorageLinkContext() noexcept
        : bm_link(nullptr)
    {
    }
    ~BmStorageLinkContext() = default;
};

}