This file is indexed.

/usr/include/wx-2.8/wx/fl/fldefs.h is in wx2.8-headers 2.8.12.1-6ubuntu2.

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
/////////////////////////////////////////////////////////////////////////////
// Name:        fldefs.h
// Purpose:     Declaration of global types and defines.
// Author:      David M. Falkinder (david_falkinder@hp.com)
// Modified by:
// Created:     18/09/2002
// RCS-ID:      $Id: fldefs.h 24306 2003-10-25 08:52:23Z MBN $
// Copyright:   (c) David M. Falkinder
// Licence:     wxWindows licence
/////////////////////////////////////////////////////////////////////////////

#ifndef __fldefs_H_INCLUDED__
#define __fldefs_H_INCLUDED__

#include "wx/defs.h"

/*
 * If we're using wx in Dynamic Library format do we 
 * want FL to be in DLL form as well?
 */
#ifdef WXMAKINGDLL_FL
    #define WXDLLIMPEXP_FL WXEXPORT
#elif defined(WXUSINGDLL)
    #define WXDLLIMPEXP_FL WXIMPORT
#else // not making nor using DLL
    #define WXDLLIMPEXP_FL
#endif

///////////////////////////////////////////////////////////////////////////////
// Override some of the wxArray functions to
// include our definitions
///////////////////////////////////////////////////////////////////////////////
#define WXFL_DEFINE_ARRAY(c,l)      \
    class WXDLLIMPEXP_FL l;          \
    WX_DEFINE_ARRAY(c,l)

#define WXFL_DEFINE_ARRAY_PTR(c,l)\
    class WXDLLIMPEXP_FL l;          \
    WX_DEFINE_ARRAY_PTR(c,l)

#define WXFL_DEFINE_ARRAY_LONG(t,l) \
    class WXDLLIMPEXP_FL l;          \
    WX_DEFINE_ARRAY_LONG(t,l)


#endif // __fldefs_H_INCLUDED__