#pragma once #include "ostream.h" #include namespace YAML { struct Indentation { Indentation(unsigned n_): n(n_) {} unsigned n; }; inline ostream& operator << (ostream& out, const Indentation& indent) { for(unsigned i=0;i