Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-12594: Remove daf::base::Citizen #23

Merged
merged 2 commits into from
Jul 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 5 additions & 9 deletions include/lsst/pex/policy/DefaultPolicyFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ namespace policy {
*/
class DefaultPolicyFile : public PolicyFile {
public:

/**
* define a default policy file
* @param productName the name of the product that the default
Expand All @@ -86,10 +85,8 @@ class DefaultPolicyFile : public PolicyFile {
* be incomplete. This is identical to the strict
* argument to Policy's loadPolicyFiles().
*/
DefaultPolicyFile(const char* const productName,
const std::string& filepath,
const std::string& repos="",
bool strict=true);
DefaultPolicyFile(const char* const productName, const std::string& filepath,
const std::string& repos = "", bool strict = true);

/**
* return the file path to the installation directory of a given
Expand All @@ -115,7 +112,6 @@ class DefaultPolicyFile : public PolicyFile {
*/
static boost::filesystem::path installPathFor(const char* const productName);


/**
* load the data from this Policy source into a Policy object. This
* implementation will automatically de-reference any file include
Expand All @@ -132,8 +128,8 @@ class DefaultPolicyFile : public PolicyFile {
bool _strict;
};

}}} // end namespace lsst::pex::policy


} // namespace policy
} // namespace pex
} // namespace lsst

#endif