blob: 66a56266751bb0520a79985598979bdbbb2a00e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "output.h"
#include <util/stream/output.h>
using namespace NColorizer;
template <>
void Out<TColorHandle>(IOutputStream& o, const TColorHandle& h) {
o << (*(h.C).*h.F)();
}
|