* a valid range.
*/
const int upper_bound;
-
- /**
- * Initial part of description
- */
- static const char* description_init;
+
+ /**
+ * Initial part of description
+ */
+ static const char* description_init;
};
- const char* Integer::description_init = "[Integer";
/**
* Test for the string being a
* a valid range.
*/
const double upper_bound;
-
- /**
- * Initial part of description
- */
- static const char* description_init;
+
+ /**
+ * Initial part of description
+ */
+ static const char* description_init;
};
- const char* Double::description_init = "[Double";
/**
* Test for the string being one
*/
std::string sequence;
- /**
- * Initial part of description
- */
- static const char* description_init;
+ /**
+ * Initial part of description
+ */
+ static const char* description_init;
};
- const char* Selection::description_init = "[Selection";
/**
*/
const unsigned int max_elements;
- /**
- * Initial part of description
- */
- static const char* description_init;
+ /**
+ * Initial part of description
+ */
+ static const char* description_init;
};
- const char* List::description_init = "[List";
/**
* This class is much like the
*/
std::string sequence;
- /**
- * Initial part of description
- */
- static const char* description_init;
+ /**
+ * Initial part of description
+ */
+ static const char* description_init;
};
- const char* MultipleSelection::description_init = "[MultipleSelection";
/**
* Test for the string being
*/
virtual PatternBase * clone () const;
- /**
- * Initial part of description
- */
- static const char* description_init;
+ /**
+ * Initial part of description
+ */
+ static const char* description_init;
};
- const char* Anything::description_init = "[Anything";
}
#endif
+ const char* Integer::description_init = "[Integer";
+
Integer::Integer (const int lower_bound,
const int upper_bound)
:
0;
#endif
+ const char* Double::description_init = "[Double";
+
Double::Double (const double lower_bound,
const double upper_bound)
:
+ const char* Selection::description_init = "[Selection";
+
+
Selection::Selection (const std::string &seq)
{
sequence = seq;
#endif
+ const char* List::description_init = "[List";
+
+
List::List (const PatternBase &p,
const unsigned int min_elements,
const unsigned int max_elements)
+ const char* MultipleSelection::description_init = "[MultipleSelection";
+
+
MultipleSelection::MultipleSelection (const std::string &seq)
{
Assert (seq.find (",") == std::string::npos, ExcCommasNotAllowed(seq.find(",")));
+ const char* Anything::description_init = "[Anything";
+
+
Anything::Anything ()
{}