bux API Reference 1.9.0
Static library of whatever are seen required in general purpose but not directly supported from Modern C++. Or whatever reusable originated from my side projects.
Loading...
Searching...
No Matches
XConsole.h
Go to the documentation of this file.
1#pragma once
2
3#include <string_view> // std::string_view
4
5namespace bux {
6
7//
8// Externals
9//
10void getKeyPunch(std::string_view msg, int &key, const char *keyFilter =0);
11void pressAKey();
12bool testWritability(const char *file);
13
14} // namespace bux
THE common namespace of bux library.
Definition AtomiX.cpp:3
bool testWritability(const char *file)
Definition XConsole.cpp:195
void pressAKey()
Definition XConsole.cpp:183
void getKeyPunch(std::string_view msg, int &key, const char *keyFilter)
Definition XConsole.cpp:165