add operator<< for Server

This commit is contained in:
Michael Davidsaver
2020-07-24 19:12:17 -07:00
parent 9328d193af
commit 63912a017a
8 changed files with 153 additions and 1 deletions
+5
View File
@@ -195,6 +195,11 @@ struct MonitorOp : public ServerOp,
scheduled = true;
}
}
void show(std::ostream& strm) const override final
{
strm<<"MONITOR\n";
}
};
struct ServerMonitorSetup;