Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/sleep.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __SLEEP_H__
8#define __SLEEP_H__
9
10namespace Helpers
11{
17 void sleep(int milliseconds);
18
19} // end namespace
20
21#endif // __SLEEP_H__
22
The namespace containing all the "helper" functions in the C++ code.
void sleep(int milliseconds)
Sleep for the specified number of milliseconds. Does not return until after the sleep period.
Definition: sleep.cpp:15