diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-17 09:10:14 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-22 07:33:38 -0400 |
| commit | ad77e315f5c53994d75056608df0f9ff0a390530 (patch) | |
| tree | 486ec4cc333301b62fbe89e72fcdbf2671f60178 /src/shared/util.h | |
| parent | bca6283311cf1dea4c96f8ee5bf192bdb1640cb3 (diff) | |
moved Console to util
Diffstat (limited to 'src/shared/util.h')
| -rw-r--r-- | src/shared/util.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index c4a2ed7d..a5d096ac 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -54,6 +54,20 @@ bool CaseInsensitiveEqual(const std::wstring &lhs, const std::wstring &rhs); namespace env
{
+class Console
+{
+public:
+ Console();
+ ~Console();
+
+private:
+ bool m_hasConsole;
+ FILE* m_in;
+ FILE* m_out;
+ FILE* m_err;
+};
+
+
// an application shortcut that can be either on the desktop or the start menu
//
class Shortcut
|
