summaryrefslogtreecommitdiff
path: root/ACE/ACEXML/common/Locator.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ACEXML/common/Locator.h')
-rw-r--r--ACE/ACEXML/common/Locator.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ACEXML/common/Locator.h b/ACE/ACEXML/common/Locator.h
index c4282454657..14f27aefb99 100644
--- a/ACE/ACEXML/common/Locator.h
+++ b/ACE/ACEXML/common/Locator.h
@@ -43,27 +43,27 @@ class ACEXML_Export ACEXML_Locator
{
public:
- virtual ~ACEXML_Locator (void);
+ virtual ~ACEXML_Locator ();
/*
* Return the column number where the current document event ends.
*/
- virtual int getColumnNumber (void) const = 0;
+ virtual int getColumnNumber () const = 0;
/*
* Return the line number where the current document event ends.
*/
- virtual int getLineNumber (void) const = 0;
+ virtual int getLineNumber () const = 0;
/*
* Return the public identifier for the current document event.
*/
- virtual const ACEXML_Char *getPublicId (void) const = 0;
+ virtual const ACEXML_Char *getPublicId () const = 0;
/*
* Return the system identifier for the current document event.
*/
- virtual const ACEXML_Char *getSystemId (void) const = 0;
+ virtual const ACEXML_Char *getSystemId () const = 0;
};