Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/checkforkey.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __CHECKFORKEY_H__
8#define __CHECKFORKEY_H__
9
10namespace Helpers
11{
12
18 bool checkforkey();
19
20} // end namespace
21
22#endif // __CHECKFORKEY_H__
23
The namespace containing all the "helper" functions in the C++ code.
bool checkforkey()
Determine if a key has been pressed.
Definition: checkforkey.cpp:46