summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/Mem_Map_Stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/Mem_Map_Stream.h')
-rw-r--r--ACE/examples/Web_Crawler/Mem_Map_Stream.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/examples/Web_Crawler/Mem_Map_Stream.h b/ACE/examples/Web_Crawler/Mem_Map_Stream.h
index 2089256f3d8..f2e9195ce61 100644
--- a/ACE/examples/Web_Crawler/Mem_Map_Stream.h
+++ b/ACE/examples/Web_Crawler/Mem_Map_Stream.h
@@ -57,18 +57,18 @@ public:
ACE_SOCK_CONNECTOR>
STRAT_CONNECTOR;
- // Mem_Map_Stream (void);
+ // Mem_Map_Stream ();
// constructor added:KIRTHIKA
/// Initialize this object.
virtual int open (STRAT_CONNECTOR *connector,
const ACE_INET_Addr &);
/// Destructor.
- virtual ~Mem_Map_Stream (void);
+ virtual ~Mem_Map_Stream ();
// = Accessor.
/// Returns the underlying <ACE_SOCK_Stream>.
- ACE_SOCK_Stream &stream (void);
+ ACE_SOCK_Stream &stream ();
// = I/O methods.
@@ -83,7 +83,7 @@ public:
* position. Returns EOF when the <get> position reaches the end of
* the HTTP stream.
*/
- virtual int get_char (void);
+ virtual int get_char ();
/**
* Returns a pointer to array of at most <len> characters starting
@@ -108,7 +108,7 @@ public:
* stream. This works since all the data has been cached in the
* memory-mapped backing store.
*/
- virtual int rewind (void);
+ virtual int rewind ();
/**
* Returns the nth character <offset> from the <get> position in the
@@ -154,7 +154,7 @@ public:
ACE_SYNCH_NULL_MUTEX>
CACHED_CONNECT_STRATEGY;*/
- Svc_Handler *svc_handler (void);
+ Svc_Handler *svc_handler ();
private:
/**
@@ -162,7 +162,7 @@ private:
* extend the mapping to cover this chunk. Returns -1 on failure or
* EOF, else 0.
*/
- int grow_file_and_remap (void);
+ int grow_file_and_remap ();
//ACE_SOCK_Stream stream_;