]> git.ipfire.org Git - thirdparty/squid.git/blob - src/mgr/Command.cc
SMP Cache Manager, Phase2 implementation.
[thirdparty/squid.git] / src / mgr / Command.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 16 Cache Manager API
5 *
6 */
7
8 #include "config.h"
9 #include "mgr/ActionProfile.h"
10 #include "mgr/Command.h"
11
12 std::ostream &
13 operator <<(std::ostream &os, const Mgr::Command &cmd)
14 {
15 if (cmd.profile != NULL)
16 return os << *cmd.profile;
17 return os << "undef";
18 }