This file is indexed.

/usr/include/log4shib/Layout.hh is in liblog4shib-dev 1.0.9-3.

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
/*
 * Layout.hh
 *
 * Copyright 2000, LifeLine Networks BV (www.lifeline.nl). All rights reserved.
 * Copyright 2000, Bastiaan Bakker. All rights reserved.
 *
 * See the COPYING file for the terms of usage and distribution.
 */

#ifndef _LOG4SHIB_LAYOUT_HH
#define _LOG4SHIB_LAYOUT_HH

#include <log4shib/Portability.hh>
#include <log4shib/LoggingEvent.hh>
#include <string>

namespace log4shib {

/**
 * Extend this abstract class to create your own log layout format.
 **/
    class LOG4SHIB_EXPORT Layout {
        public:
        /**
         * Destructor for Layout.
         **/
        virtual ~Layout() { };

        /**
         * Formats the LoggingEvent data to a string that appenders can log.
         * Implement this method to create your own layout format.
         * @param event The LoggingEvent.
         * @returns an appendable string.
         **/
        virtual std::string format(const LoggingEvent& event) = 0;
    };        
}

#endif // _LOG4SHIB_LAYOUT_HH