This file is indexed.

/usr/include/arc/loader/Loader.h is in nordugrid-arc-dev 4.2.0-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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef __ARC_LOADER_H__
#define __ARC_LOADER_H__

#include <string>
#include <map>
#include <arc/Logger.h>
#include <arc/loader/Plugin.h>

namespace Arc {

  /// Plugins loader.
  /** This class processes XML configration and loads specified plugins.
     Accepted configuration is defined by XML schema mcc.xsd.
    "Plugins" elements are parsed by this class and corresponding libraries
     are loaded.
     Main functionality is provided by class PluginsFactory. */
  class Loader {
   public:
    static Logger logger;

   protected:
    /** Link to Factory responsible for loading and creation of
       Plugin and derived objects */
    PluginsFactory *factory_;

   public:
    Loader() : factory_(NULL) {};
    /** Constructor that takes whole XML configuration and performs
       common configuration part */
    Loader(XMLNode cfg);
    /** Destructor destroys all components created by constructor */
    ~Loader();

   private:
    Loader(const Loader&);
    Loader& operator=(const Loader&) { return *this; };
 };

} // namespace Arc

#endif /* __ARC_LOADER_H__ */