mirror of
https://github.com/ProgramSnail/build_system_2022.git
synced 2025-12-06 00:48:42 +00:00
12 lines
191 B
C++
12 lines
191 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <functional>
|
||
|
|
#include <utility>
|
||
|
|
|
||
|
|
namespace build_system {
|
||
|
|
|
||
|
|
using Task = std::function<void()>;
|
||
|
|
|
||
|
|
using IdentTask = std::pair<Task, size_t>;
|
||
|
|
|
||
|
|
}; // namespace build_system
|