/usr/include/arc/loader/FinderLoader.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 | // -*- indent-tabs-mode: nil -*-
#ifndef __ARC_FINDERLOADER_H__
#define __ARC_FINDERLOADER_H__
#include <list>
#include <string>
namespace Arc {
// TODO: Remove this class by partially moving its functionality
// to PluginsFactory and related classes. That should remove
// dependency of plugin loading library on classes managing user
// configuration.
// This class is fully static.
class FinderLoader
/* : Loader */ {
private:
FinderLoader() {}
~FinderLoader() {}
public:
//static const PluginList GetPluginList(const std::string& kind);
static const std::list<std::string> GetLibrariesList(void);
};
} // namespace Arc
#endif // __ARC_FINDERLOADER_H__
|