![]() |
![]() |
#include "HtrXmlPatternWriter.h"
Go to the source code of this file.
Functions | |
static const char * | tabbing (int level) |
static const char* tabbing | ( | int | level | ) | [static] |
Definition at line 3 of file HtrXmlPatternWriter.cc.
References i.
Referenced by HtrXmlPatternWriter::writePattern().
00003 { 00004 static char tab[50]; 00005 for (int i=0; i<level*2; i++) 00006 tab[i]=' '; 00007 tab[level*2]=0; 00008 return tab; 00009 }