aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/persistence/types.h
blob: c3d7f9eab6ddbce89228194573eefe98a41ce09c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright Yahoo. 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