00001 00006 /*----------------------------------------------------------------------------*/ 00007 /* C Tool Box: Designed and implemented by: */ 00008 /* Walter F.J. Mueller Gesellschaft fuer Schwerionenforschung (GSI) */ 00009 /* Planckstrasse 1, D-64291 Darmstadt, Germany */ 00010 /* Email: W.F.J.Mueller@gsi.de */ 00011 /* WWW: http://www-kp3.gsi.de/www/kp3/people/mueller.html */ 00012 /*------------------------------------------+---------------------------------*/ 00013 00014 //------------------------------------------+----------------------------------- 00016 00017 inline CTBlogHead::CTBlogHead() 00018 {} 00019 00020 //------------------------------------------+----------------------------------- 00026 inline ostream& operator<<(ostream& os, const CTBlogHead& obj) 00027 { 00028 obj.ToStream(os); 00029 return os; 00030 } 00031 00032 //------------------------------------------+----------------------------------- 00034 00035 inline CTBlogTail::CTBlogTail() 00036 {} 00037 00038 //------------------------------------------+----------------------------------- 00044 inline ostream& operator<<(ostream& os, const CTBlogTail& obj) 00045 { 00046 obj.ToStream(os); 00047 return os; 00048 } 00049 00050 //------------------------------------------+----------------------------------- 00052 00053 inline CTBlogLine::CTBlogLine() 00054 : mc_message(0) 00055 {} 00056 00057 //------------------------------------------+----------------------------------- 00059 00060 inline CTBlogLine::CTBlogLine(const char * c_message) 00061 : mc_message(c_message) 00062 {} 00063 00064 //------------------------------------------+----------------------------------- 00070 inline ostream& operator<<(ostream& os, const CTBlogLine& obj) 00071 { 00072 obj.ToStream(os); 00073 return os; 00074 } 00075