This file is indexed.

/usr/include/log4cpp/Export.hh is in liblog4cpp5-dev 1.0-4.

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
#ifndef _LOG4CPP_EXPORT_HH
#define _LOG4CPP_EXPORT_HH

#ifdef LOG4CPP_HAS_DLL
#	ifdef LOG4CPP_BUILD_DLL
#		if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
#			define LOG4CPP_EXPORT __declspec(dllexport)
#               else
#			define LOG4CPP_EXPORT
#               endif 
#	else
#		if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
#			define LOG4CPP_EXPORT __declspec(dllimport)
#               else
#			define LOG4CPP_EXPORT
#               endif 
#	endif
#else
#	define LOG4CPP_EXPORT 
#endif

#endif // _LOG4CPP_EXPORT_HH