19 lines
461 B
C++
19 lines
461 B
C++
// Filename: indent.cxx
|
|
// Created by: drose (05May00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "indent.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: indent
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
ostream &
|
|
indent(ostream &out, int indent_level) {
|
|
for (int i = 0; i < indent_level; i++) {
|
|
out << ' ';
|
|
}
|
|
return out;
|
|
}
|