]> git.ipfire.org Git - thirdparty/squid.git/blame - src/mgr/Command.h
Boilerplate: update copyright blurbs on Squid helpers
[thirdparty/squid.git] / src / mgr / Command.h
CommitLineData
8822ebee 1/*
8822ebee
AR
2 * DEBUG: section 16 Cache Manager API
3 *
4 */
5
6#ifndef SQUID_MGR_COMMAND_H
7#define SQUID_MGR_COMMAND_H
8
9#include "mgr/ActionParams.h"
10#include "mgr/forward.h"
11
12namespace Mgr
13{
14
15/// combined hard-coded action profile with user-supplied action parameters
d9fc6862
A
16class Command: public RefCountable
17{
8822ebee
AR
18public:
19 typedef RefCount<Command> Pointer;
20
21public:
22 ActionProfilePointer profile; ///< hard-coded action specification
23 ActionParams params; ///< user-supplied action arguments
24};
25
26} // namespace Mgr
27
28std::ostream &operator <<(std::ostream &os, const Mgr::Command &cmd);
29
30#endif /* SQUID_MGR_COMMAND_H */