LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
optional_parameter_message.h
Go to the documentation of this file.
1 #ifndef fhiclcpp_types_detail_optional_parameter_message_h
2 #define fhiclcpp_types_detail_optional_parameter_message_h
3 
4 namespace fhicl {
5  namespace detail {
6  inline std::string
7  optional_parameter_message(bool const with_comment = true)
8  {
9  std::string result;
10  if (with_comment) {
11  result += "## ";
12  }
13  result += "Any parameters prefaced with '#' are optional.";
14  return result;
15  }
16  }
17 }
18 
19 #endif /* fhiclcpp_types_detail_optional_parameter_message_h */
20 
21 // Local variables:
22 // mode: c++
23 // End:
std::string optional_parameter_message(bool const with_comment=true)
parameter set interface