aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/tensor/prepare_result.h
blob: 9f1eef19f8628af573623e1e30957ae8b53e13ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace search::tensor {

/**
 * Interface for a class used to keep the result of the prepare step of a two-phase operation.
 */
class PrepareResult {
public:
    virtual ~PrepareResult() {}
};

}