-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sleep helper function and check if the view can be opened in the render.
- Loading branch information
1 parent
abdf64e
commit fd4bbdf
Showing
4 changed files
with
35 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
#include <iostream> | ||
#include <vector> | ||
#include <map> | ||
|
||
using namespace std; | ||
|
||
bool isInCharStringMap(const map<char, string> &, char); | ||
bool isInCharVector(const vector<char> &, char); | ||
bool isInIntVector(const vector<int> &, int); | ||
bool isInStringVector(const vector<string> &, string); | ||
bool isInStringVector(const vector<string> &, string); | ||
void sleepAndClearBuffer(unsigned delay); |