Add support for comma-separated list of names for attribute "extension" of element <require> in element <extension>.

This commit is contained in:
asuessenbach
2022-07-04 18:02:22 +02:00
parent 86cc8f2ed1
commit 49a2fc679a
2 changed files with 16 additions and 6 deletions

View File

@@ -177,9 +177,9 @@ private:
struct RequireData
{
RequireData( int line, std::string const & title_ ) : title( title_ ), xmlLine( line ) {}
RequireData( int line, std::string const & titles_ );
std::string title;
std::vector<std::string> titles;
std::vector<std::string> commands;
std::vector<std::string> types;
int xmlLine;