It is possible to exclude class methods in CPPYY based on their function arguments?
For example, suppose that a class has two constructors:
class A
{
A(int);
A(double);
};
Is it possible to select class A but exclude one of the two constructors?
Selecting and excluding classes/methods is done using the genreflex utility, which uses an XML file to configure CPPYY. But it's not clear if that the XML file supports this level of specification.