aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/persistence/types.h
blob: 6e9416b9ff3850369ae45200728b1c7b6f69482d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/storageapi/buckets/bucketinfo.h>
#include <memory>

namespace storage {

class MessageTracker;

struct Types {
    using BucketInfo = api::BucketInfo;
    using MessageTrackerUP = std::unique_ptr<MessageTracker>;
protected:
    ~Types() = default; // Noone should refer to objects as Types objects
};

} // storage