aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/colorizer/output.cpp
blob: 266a8adf961c4f402d036426a9c30fc6a7c432b3 (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)(); 
}