Files
2025-03-03 03:55:46 +03:00

9 lines
177 B
C++

#ifndef THREAD_HPP_
#define THREAD_HPP_
#include <thread>
void testThread(const std::string message, const std::chrono::milliseconds duration);
#endif // #ifndef THREAD_HPP_