output.cpp 189 B

12345678910
  1. #include "output.h"
  2. #include <util/stream/output.h>
  3. using namespace NColorizer;
  4. template <>
  5. void Out<TColorHandle>(IOutputStream& o, const TColorHandle& h) {
  6. o << (*(h.C).*h.F)();
  7. }