summaryrefslogtreecommitdiff
path: root/ACE/ACEXML/common/HttpCharStream.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ACEXML/common/HttpCharStream.h')
-rw-r--r--ACE/ACEXML/common/HttpCharStream.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ACE/ACEXML/common/HttpCharStream.h b/ACE/ACEXML/common/HttpCharStream.h
index 24359adc767..f6d7cd167ad 100644
--- a/ACE/ACEXML/common/HttpCharStream.h
+++ b/ACE/ACEXML/common/HttpCharStream.h
@@ -31,10 +31,10 @@ class ACEXML_Export ACEXML_HttpCharStream : public ACEXML_CharStream
{
public:
/// Default constructor.
- ACEXML_HttpCharStream (void);
+ ACEXML_HttpCharStream ();
/// Destructor
- virtual ~ACEXML_HttpCharStream (void);
+ virtual ~ACEXML_HttpCharStream ();
/// Open an URL.
int open (const ACEXML_Char *url);
@@ -43,12 +43,12 @@ public:
* Returns the available ACEXML_Char in the buffer. -1
* if the object is not initialized properly.
*/
- virtual int available (void);
+ virtual int available ();
/**
* Close this stream and release all resources used by it.
*/
- virtual int close (void);
+ virtual int close ();
/**
* Read the next ACEXML_Char. Return -1 if we are not able to
@@ -65,27 +65,27 @@ public:
* Peek the next ACEXML_Char in the CharStream. Return the
* character if succeess, -1 if EOS is reached.
*/
- virtual int peek (void);
+ virtual int peek ();
/**
* Resets the file pointer to the beginning of the stream.
*/
- virtual void rewind (void);
+ virtual void rewind ();
/**
* Determine the encoding of the file.
*/
- virtual int determine_encoding (void);
+ virtual int determine_encoding ();
/**
* Get the encoding of the file
*/
- virtual const ACEXML_Char* getEncoding (void);
+ virtual const ACEXML_Char* getEncoding ();
/*
* Get the systemId for the underlying CharStream
*/
- virtual const ACEXML_Char* getSystemId (void);
+ virtual const ACEXML_Char* getSystemId ();
private:
@@ -101,14 +101,14 @@ private:
* encoding of the file. Subsequent call to get() returns this
* character.
*/
- int peek_i (void);
+ int peek_i ();
#endif /* ACE_USES_WCHAR */
/**
* Send a HTTP/1.1 request to fetch the contents of the URL.
*/
- int send_request (void);
+ int send_request ();
/**
* Fetch the URL and save it in backing store.