]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mgr/Command.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / mgr / Command.cc
CommitLineData
8822ebee 1/*
5b74111a 2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
8822ebee 3 *
bbc27441
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
8822ebee
AR
7 */
8
bbc27441
AJ
9/* DEBUG: section 16 Cache Manager API */
10
f7f3304a 11#include "squid.h"
8822ebee
AR
12#include "mgr/ActionProfile.h"
13#include "mgr/Command.h"
14
15std::ostream &
16operator <<(std::ostream &os, const Mgr::Command &cmd)
17{
18 if (cmd.profile != NULL)
19 return os << *cmd.profile;
20 return os << "undef";
21}
f53969cc 22