This file is indexed.

/usr/include/x86_64-linux-gnu/zypp/KeyContext.h is in libzypp-dev 14.29.1-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
#ifndef KEYCONTEXT_H_
#define KEYCONTEXT_H_

#include "zypp/RepoInfo.h"

namespace zypp {

  struct KeyContext
  {
  public:
    /** Is the context unknown? */
    bool empty() const { return _repoInfo.alias().empty(); }
    
  public:
    const RepoInfo repoInfo() const { return _repoInfo; }
    void setRepoInfo(const RepoInfo & repoinfo) { _repoInfo = repoinfo; }
  
  private:
    RepoInfo _repoInfo;
  };

}

#endif /*KEYCONTEXT_H_*/