blob: 36e48adc11d874c72ef4a8fff0325b0d32d99e3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// -*- c++ -*-
#pragma once
#include <string>
#include <list>
#include <memory>
#include "task.h"
#include "settings.h"
int build(const Settings& settings,
const std::string& name,
const std::list<std::shared_ptr<Task>>& tasks,
const std::list<std::shared_ptr<Task>>& all_tasks);
int build(const Settings& settings,
const std::string& name,
const std::list<std::shared_ptr<Task>>& all_tasks);
|