xtd - Reference Guide  0.1.2
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
reset_color.h
Go to the documentation of this file.
1
4#pragma once
5#include "console.h"
6#include "object.h"
7
9namespace xtd {
17 class reset_color final : public object {
18 public:
19 reset_color() = default;
20
22 friend std::ostream& operator<<(std::ostream& os, const reset_color&) {
23 if (!console::is_out_redirected() && os.rdbuf() == console::out.rdbuf())
25 return os;
26 }
28 };
29}
static std::ostream out
Gets the standard output stream. A std::basic_ostream<char_t> that represents the standard output str...
Definition console.h:39
static bool reset_color()
Sets the foreground and background console colors to their defaults.
static bool is_out_redirected()
Gets a value that indicates whether the output stream has been redirected from the standard output st...
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.h:26
Represent reset color output manipulator class.
Definition reset_color.h:17
Contains xtd::console class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition system_report.h:17
Contains xtd::object class.