]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/mem/Page.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / ipc / mem / Page.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 54 Interprocess Communication
5 *
6 */
7
8 #include "squid.h"
9 #include "ipc/mem/Page.h"
10
11 #if HAVE_IOSTREAM
12 #include <iostream>
13 #endif
14
15 std::ostream &Ipc::Mem::operator <<(std::ostream &os, const PageId &page)
16 {
17 return os << "sh_page" << page.pool << '.' << page.number;
18 }