This file is indexed.

/usr/include/dcmtk/dcmimage/dilogger.h is in libdcmtk2-dev 3.6.0-9.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 *
 *  Copyright (C) 2009-2010, OFFIS e.V.
 *  All rights reserved.  See COPYRIGHT file for details.
 *
 *  This software and supporting documentation were developed by
 *
 *    OFFIS e.V.
 *    R&D Division Health
 *    Escherweg 2
 *    D-26121 Oldenburg, Germany
 *
 *
 *  Module:  dcmimage
 *
 *  Author:  Joerg Riesmeier
 *
 *  Purpose: Logger (Header)
 *
 *  Last Update:      $Author: joergr $
 *  Update Date:      $Date: 2010-10-14 13:16:29 $
 *  CVS/RCS Revision: $Revision: 1.2 $
 *  Status:           $State: Exp $
 *
 *  CVS/RCS Log at end of file
 *
 */


#ifndef DILOGGER_H
#define DILOGGER_H

#include "dcmtk/config/osconfig.h"

#include "dcmtk/oflog/oflog.h"

OFLogger DCM_dcmimageGetLogger();

#define DCMIMAGE_TRACE(msg) OFLOG_TRACE(DCM_dcmimageGetLogger(), msg)
#define DCMIMAGE_DEBUG(msg) OFLOG_DEBUG(DCM_dcmimageGetLogger(), msg)
#define DCMIMAGE_INFO(msg)  OFLOG_INFO(DCM_dcmimageGetLogger(), msg)
#define DCMIMAGE_WARN(msg)  OFLOG_WARN(DCM_dcmimageGetLogger(), msg)
#define DCMIMAGE_ERROR(msg) OFLOG_ERROR(DCM_dcmimageGetLogger(), msg)
#define DCMIMAGE_FATAL(msg) OFLOG_FATAL(DCM_dcmimageGetLogger(), msg)

#endif


/*
 *
 * CVS/RCS Log:
 * $Log: dilogger.h,v $
 * Revision 1.2  2010-10-14 13:16:29  joergr
 * Updated copyright header. Added reference to COPYRIGHT file.
 *
 * Revision 1.1  2009-11-25 14:32:47  joergr
 * Added new source and header file for the module logger.
 *
 *
 */