This file is indexed.

/usr/share/qtcreator/templates/tlpimport/importplugin.h is in libtulip-dev 4.4.0dfsg2-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
#ifndef %ProjectName:u%_H
#define %ProjectName:u%_H

#include <tulip/ImportModule.h>

class %ProjectName:c%: public tlp::ImportModule {
public:
  PLUGININFORMATION("%PluginName%", "%Author%", "%Date%", "%Informations%", "%Version%", "%Group%")

%ProjectName:c%(tlp::PluginContext* context);
  virtual ~%ProjectName:c%();

  bool importGraph();
  virtual std::list<std::string> fileExtensions() const;
};

#endif // %ProjectName:u%_H