I know that endl is definied this way. I already tried to redefine endl in this way, but it doesn´t work too. Now i used the following code without any success:
Code:
template <class _Elem, class _Tr>
inline basic_ostream<_Elem, _Tr>& endl( basic_ostream<_Elem, _Tr>& OutStream )
{
	OutStream << "\n\n\n" << endl;	
	return OutStream;
}
It is no problem to define my own manipulator but when i try to redefine one it doesn´t work...

Thanks