51 explicit StreamDestination(std::ostream& stream);
53 void Print(
const std::string& value)
override;
54 void Print(
const std::string_view& value)
override;
55 void Print(
const char* value)
override;
56 void Print(
bool value)
override;
57 void Print(
short value)
override;
58 void Print(
unsigned short value)
override;
59 void Print(
int value)
override;
60 void Print(
unsigned int value)
override;
61 void Print(
long value)
override;
62 void Print(
unsigned long value)
override;
63 void Print(
long long value)
override;
64 void Print(
unsigned long long value)
override;
65 void PrintLn()
override;
69 StreamDestination infoDestination;
70 StreamDestination errorDestination;
74 std::ostream& errorStream);