aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/documentmetastore/i_simple_document_meta_store.h
blob: cbf832bb4c58803fcaeccc1224bd789f61bb80e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "i_bucket_handler.h"
#include "i_store.h"

namespace proton {

/**
 * Interface for a simple document meta store that combines the
 * interfaces IStore and IBucketHandler.
 */
struct ISimpleDocumentMetaStore : public documentmetastore::IStore,
                                  public documentmetastore::IBucketHandler
{
    ~ISimpleDocumentMetaStore() override = default;
};

} // namespace proton