This file is indexed.

/usr/include/wx-2.6/wx/dbkeyg.h is in wx2.6-headers 2.6.3.2.2-5ubuntu4.

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
///////////////////////////////////////////////////////////////////////////////
// Name:        dbkeyg.h
// Purpose:     Generic key support for wxDbTable
// Author:      Roger Gammans
// Modified by:
// Created:
// RCS-ID:      $Id: dbkeyg.h,v 1.4 2004/09/10 12:55:47 ABX Exp $
// Copyright:   (c) 1999 The Computer Surgery (roger@computer-surgery.co.uk)
// Licence:     wxWindows licence
//
// NOTE : There is no CPP file to go along with this
//
///////////////////////////////////////////////////////////////////////////////
// Branched From : gkey.h,v 1.3 2001/06/01 10:31:41
///////////////////////////////////////////////////////////////////////////////

#ifndef _WX_DBGKEY_H_
#define _WX_DBGKEY_H_

class GenericKey
{
public:
    GenericKey(void *blk, size_t sz)    { clone(blk,sz); }
    GenericKey(const GenericKey &ref)   { clone(ref.m_data,ref.m_sz); }
    ~GenericKey()                       { free(m_data); }

    void *GetBlk(void) const { return m_data; }

private:
    void clone(void *blk, size_t sz)
    {
        m_data = malloc(sz);
        memcpy(m_data,blk,sz);
        m_sz = sz;
    }

    void   *m_data;
    size_t  m_sz;
};

#endif // _WX_DBGKEY_H_