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