AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ section()

void section ( const char *  s,
const char  l = '-' 
)

print headline

This function prints a string to cout and underlines the string.

Examples:
tests/arraytest.cc, tests/f77test.cc, tests/helpertest.cc, tests/operatortest.cc, tests/reprtest.cc, tests/seriestest.cc, tests/shapetest.cc, and tests/simplearraytest.cc.

Definition at line 82 of file arrayexample.cc.

Referenced by main().

83 {
84  cout << endl << s << endl;
85  const char* p=s;
86  while (*p) { cout << l; ++p; }
87  cout << endl;
88 }
Here is the caller graph for this function: