blob: 6d1385e64bc761509048c8d1536430d8337b14b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once
#include <vector>
#include <memory>
class Task;
namespace ctor {
struct settings;
} // namespace ctor::
int runUnitTests(std::vector<std::shared_ptr<Task>>& tasks,
const ctor::settings& settings);
|