9 lines
177 B
C++
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_
|