This file is indexed.

/usr/include/libindi/alignment/DriverCommon.h is in libindi-dev 1.7.1-0ubuntu1.

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
/*!
 * \file DriverCommon.h
 *
 * \author Roger James
 * \date 28th January 2014
 *
 */

#pragma once

#include "indilogger.h"

namespace INDI
{
namespace AlignmentSubsystem
{
#define ASSDEBUG(msg) INDI::Logger::getInstance().print("alignmentSubsystem", DBG_ALIGNMENT, __FILE__, __LINE__, msg)
#define ASSDEBUGF(msg, ...) \
    INDI::Logger::getInstance().print("AlignmentSubsystem", DBG_ALIGNMENT, __FILE__, __LINE__, msg, __VA_ARGS__)

extern int DBG_ALIGNMENT;

} // namespace AlignmentSubsystem
} // namespace INDI