blob: 37aead3e194aedecb48ecc691a4c593434bae709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
** \file misc/file-library.hxx
** \brief implements inline function of misc/file-library.hh
*/
#pragma once
#include <misc/file-library.hh>
namespace misc
{
inline std::ostream& operator<<(std::ostream& ostr, const file_library& l)
{
return l.dump(ostr);
}
} // namespace misc
|