SNAP Library 2.0, User Reference  2013-05-13 16:33:57
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
console.cpp File Reference

Go to the source code of this file.

Functions

TConEol (TCon &Con)
TConTab (TCon &Con)
TConSpc (TCon &Con)

Function Documentation

TCon& Eol ( TCon Con)

Definition at line 73 of file console.cpp.

                     {
  Con.PutCh('\n'); return Con;
}
TCon& Spc ( TCon Con)

Definition at line 81 of file console.cpp.

                     {
  Con.PutCh(' ');  return Con;
}
TCon& Tab ( TCon Con)

Definition at line 77 of file console.cpp.

                     {
  Con.PutCh('\t');  return Con;
}