This file is indexed.

/usr/include/wvstreams/unireadonlygen.h is in libwvstreams-dev 4.6.1-7.

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
/* -*- Mode: C++ -*-
 * Worldvisions Weaver Software:
 *   Copyright (C) 1997-2002 Net Integration Technologies, Inc.
 * 
 * A read only generator wrapper.
 */
#ifndef __UNIREADONLYGEN_H
#define __UNIREADONLYGEN_H

#include "unifiltergen.h"

/**
 * A generator that wraps another generator and makes it read only.
 *
 * To mount, use the moniker "readonly:" followed by the
 * moniker of the generator to wrap.
 *
 */
class UniReadOnlyGen : public UniFilterGen
{
public:
    UniReadOnlyGen(IUniConfGen *inner) : UniFilterGen(inner) { }

    /***** Overridden members *****/

    virtual void flush_buffers() { }
    virtual void set(const UniConfKey &key, WvStringParm value) { };
};


#endif // __UNICONFREADONLY_H