lyx_mirror/src/support/lyxmanip.h

30 lines
393 B
C
Raw Normal View History

// -*- C++ -*-
#ifndef LYX_MANIP_H
#define LYX_MANIP_H
#include "support/LOstream.h"
///
struct NewLineAndDepth_ {
int depth_;
};
//
inline
NewLineAndDepth_ newlineAndDepth(int n)
{
NewLineAndDepth_ nlad_;
nlad_.depth_ = n;
return nlad_;
}
//
inline
std::ostream & operator<<(std::ostream & os, NewLineAndDepth_ const & nlad_)
{
os << string(nlad_.depth_, ' ');
return os;
}
#endif