aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/doom.cpp
blob: 93ebe317ae03a1e4723538514370ebeac2a367db (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.

#include "doom.h"

namespace vespalib {

Doom::Doom(const Clock &clock, steady_time softDoom,
           steady_time hardDoom, bool explicitSoftDoom)
    : _clock(clock),
      _softDoom(softDoom),
      _hardDoom(hardDoom),
      _isExplicitSoftDoom(explicitSoftDoom)
{ }

}