aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/core/taintable.h
blob: 6e22f4e9e96b95160121fe748a920abd89107a7e (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 "taint.h"

namespace vbench {

/**
 * Interface used to report what went wrong. Implementing this
 * interface indicates that something could go wrong.
 **/
struct Taintable
{
    static const Taintable &nil();
    virtual const Taint &tainted() const = 0;
    virtual ~Taintable() {}
};

} // namespace vbench