blob: fb5a0864ac9e69b34417bf5a0816be08c84268ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
** \file misc/deref.cc
** \brief Implementation for misc/deref.hh
*/
#include <misc/deref.hh>
namespace misc
{
Deref::Deref(std::ostream& o)
: ostr_(o)
{}
} // namespace misc
|