Warning, /include/Geant4/tools/chars is written in an unsupported language. File is not indexed.
0001 // Copyright (C) 2010, Guy Barrand. All rights reserved.
0002 // See the file tools.license for terms.
0003
0004 #ifndef tools_chars
0005 #define tools_chars
0006
0007 namespace tools {
0008
0009 // some char ASCII code :
0010 // \0 : 0
0011 // \n = LF : 10
0012 // \r = CR : 13
0013 // \t = HT : 9
0014 // , : 44
0015
0016 inline char LF() {return 10;}
0017 inline char CR() {return 13;}
0018
0019 }
0020
0021 #endif