#ifndef Morpheo_Tabulation_h #define Morpheo_Tabulation_h /* * $Id: Tabulation.h 94 2008-12-15 11:04:03Z rosiere $ * * [ Description ] * */ #include #include namespace morpheo { inline std::string tab (uint32_t depth) { return std::string(depth,'\t'); } }; // end namespace morpheo #endif