/usr/include/arc/Profile.h is in nordugrid-arc-dev 5.0.5-1ubuntu1.
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 | // -*- indent-tabs-mode: nil -*-
#ifndef __ARC_PROFILE_H__
#define __ARC_PROFILE_H__
#include <string>
#include <arc/ArcConfig.h>
#include <arc/IniConfig.h>
#include <arc/Logger.h>
#include <arc/XMLNode.h>
namespace Arc {
/// Class used to convert human-friendly ini-style configuration to XML.
/** \ingroup common
* \headerfile Profile.h arc/Profile.h */
class Profile
: public XMLNode {
public:
/// Create a new profile with the given profile file
Profile(const std::string& filename);
~Profile();
/// Evaluate the given ini-style configuration against the current profile.
void Evaluate(Config &cfg, IniConfig ini);
};
} // namespace Arc
#endif /* __ARC_PROFILE_H__ */
|