SNAP Library 2.3, User Reference  2014-06-16 11:58:46
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
console.h File Reference

Go to the source code of this file.

Classes

class  TConManip
 
class  TCon
 

Functions

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

Function Documentation

TCon& Eol ( TCon Con)

Definition at line 73 of file console.cpp.

73  {
74  Con.PutCh('\n'); return Con;
75 }
int PutCh(const int &Ch)
Definition: console.h:33
TCon& Spc ( TCon Con)

Definition at line 81 of file console.cpp.

81  {
82  Con.PutCh(' '); return Con;
83 }
int PutCh(const int &Ch)
Definition: console.h:33
TCon& Tab ( TCon Con)

Definition at line 77 of file console.cpp.

77  {
78  Con.PutCh('\t'); return Con;
79 }
int PutCh(const int &Ch)
Definition: console.h:33