C++: Correct and improve some comments and naming.

This commit is contained in:
Geoffrey White
2022-04-13 18:32:08 +01:00
parent 2ad81e63a5
commit 27b6b99cd0
2 changed files with 13 additions and 9 deletions

View File

@@ -11,8 +11,8 @@ class AbstractDOMParser {
public:
AbstractDOMParser();
void setDisableDefaultEntityResolution(bool); // default is false (bad)
void setCreateEntityReferenceNodes(bool); // default is true (good)
void setDisableDefaultEntityResolution(bool); // default is false
void setCreateEntityReferenceNodes(bool); // default is true
void setSecurityManager(SecurityManager *const manager);
void parse(const InputSource &data);
};