xrootd
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
XrdCnsSsiSay.hh
Go to the documentation of this file.
1 #ifndef __XRDCnsSsiSay_H_
2 #define __XRDCnsSsiSay_H_
3 /******************************************************************************/
4 /* */
5 /* X r d C n s S a y . h h */
6 /* */
7 /* (c) 2009 by the Board of Trustees of the Leland Stanford, Jr., University */
8 /* All Rights Reserved */
9 /* Produced by Andrew Hanushevsky for Stanford University under contract */
10 /* DE-AC02-76-SFO0515 with the Department of Energy */
11 /* */
12 /* This file is part of the XRootD software suite. */
13 /* */
14 /* XRootD is free software: you can redistribute it and/or modify it under */
15 /* the terms of the GNU Lesser General Public License as published by the */
16 /* Free Software Foundation, either version 3 of the License, or (at your */
17 /* option) any later version. */
18 /* */
19 /* XRootD is distributed in the hope that it will be useful, but WITHOUT */
20 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
21 /* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
22 /* License for more details. */
23 /* */
24 /* You should have received a copy of the GNU Lesser General Public License */
25 /* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
26 /* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
27 /* */
28 /* The copyright holder's institutional names and contributor's names may not */
29 /* be used to endorse or promote products derived from this software without */
30 /* specific prior written permission of the institution or contributor. */
31 /******************************************************************************/
32 
33 #include "XrdSys/XrdSysError.hh"
34 
36 {
37 public:
38 
39 inline void M(const char *txt1, const char *txt2=0, const char *txt3=0,
40  const char *txt4=0, const char *txt5=0)
41  {eDest->Say("cns_ssi: ", txt1, txt2, txt3, txt4, txt5);}
42 
43 inline void V(const char *txt1, const char *txt2=0, const char *txt3=0,
44  const char *txt4=0, const char *txt5=0)
45  {if (Verbose) M(txt1, txt2, txt3, txt4, txt5);}
46 
47 inline void setV(int val) {Verbose = val;}
48 
49  XrdCnsSsiSay(XrdSysError *erp) : eDest(erp), Verbose(0) {}
51 
52 private:
53 
55 int Verbose;
56 };
57 #endif
void setV(int val)
Definition: XrdCnsSsiSay.hh:47
Definition: XrdSysError.hh:89
void Say(const char *text1, const char *text2=0, const char *txt3=0, const char *text4=0, const char *text5=0, const char *txt6=0)
~XrdCnsSsiSay()
Definition: XrdCnsSsiSay.hh:50
void M(const char *txt1, const char *txt2=0, const char *txt3=0, const char *txt4=0, const char *txt5=0)
Definition: XrdCnsSsiSay.hh:39
XrdSysError * eDest
Definition: XrdCnsSsiSay.hh:54
XrdCnsSsiSay(XrdSysError *erp)
Definition: XrdCnsSsiSay.hh:49
int Verbose
Definition: XrdCnsSsiSay.hh:55
void V(const char *txt1, const char *txt2=0, const char *txt3=0, const char *txt4=0, const char *txt5=0)
Definition: XrdCnsSsiSay.hh:43
Definition: XrdCnsSsiSay.hh:35