std::string Double::description () const
{
std::ostringstream description;
-
+
// check whether valid bounds
// were specified, and if so
// output their values
else
// if no bounds were given, then
// return generic string
- {
- description << description_init
- << "]";
- return description.str();
+ {
+ description << description_init
+ << "]";
+ return description.str();
+ }
}
std::string Selection::description () const
{
std::ostringstream description;
-
+
description << description_init
<< " "
<< sequence
<< " ]";
-
+
return description.str();
}
std::string MultipleSelection::description () const
{
std::ostringstream description;
-
+
description << description_init
<< " "
<< sequence
<< " ]";
-
+
return description.str();
}
std::string Anything::description () const
{
std::ostringstream description;
-
+
description << description_init
- << "]"
-
+ << "]";
+
return description.str();
}