Replace DoxygenTranslator debug parameters with a single flags one.

This makes the code more readable and more extensible as more flags are easier
to add in the future than more boolean parameters.

No user-visible changes.
This commit is contained in:
Vadim Zeitlin 2014-06-11 19:36:49 +02:00
commit f684242467
8 changed files with 45 additions and 32 deletions

View file

@ -22,7 +22,7 @@
*/
class JavaDocConverter : public DoxygenTranslator {
public:
JavaDocConverter(bool debugTranslator = false, bool debugParser = false);
JavaDocConverter(int flags = 0);
String *makeDocumentation(Node *node);
protected: