File thread.hpp
File List > atlas > core > threads > thread.hpp
Go to the documentation of this file
#pragma once
#include <string>
namespace atlas {
class thread {
public:
thread(const std::string& p_tag);
template<typename T>
void dispatch([[maybe_unused]] const T& p_function) {}
};
};