This file is indexed.

/usr/include/soci/blob-exchange.h is in libsoci-dev 3.2.3-2.

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
//
// Copyright (C) 2004-2008 Maciej Sobczak, Stephen Hutton
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//

#ifndef SOCI_BLOB_EXCHANGE_H_INCLUDED
#define SOCI_BLOB_EXCHANGE_H_INCLUDED

#include "blob.h"
#include "into-type.h"
#include "use-type.h"
// std
#include <string>

namespace soci
{

namespace details
{

template <>
class into_type<blob> : public standard_into_type
{
public:
    into_type(blob & b) : standard_into_type(&b, x_blob) {}
    into_type(blob & b, indicator & ind)
        : standard_into_type(&b, x_blob, ind) {}
};

template <>
class use_type<blob> : public standard_use_type
{
public:
    use_type(blob & b, std::string const & name = std::string())
        : standard_use_type(&b, x_blob, false, name) {}
    use_type(blob const & b, std::string const & name = std::string())
        : standard_use_type(const_cast<blob *>(&b), x_blob, true, name) {}
    use_type(blob & b, indicator & ind,
        std::string const & name = std::string())
        : standard_use_type(&b, x_blob, ind, false, name) {}
    use_type(blob const & b, indicator & ind,
        std::string const & name = std::string())
        : standard_use_type(const_cast<blob *>(&b), x_blob, ind, true, name) {}
};

template <>
struct exchange_traits<soci::blob>
{
    typedef basic_type_tag type_family;
};

} // namespace details

} // namespace soci

#endif // SOCI_BLOB_EXCHANGE_H_INCLUDED