summaryrefslogtreecommitdiff
path: root/ACE/ace/Stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Stream.h')
-rw-r--r--ACE/ace/Stream.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Stream.h b/ACE/ace/Stream.h
index 181d35139c5..5e994704d26 100644
--- a/ACE/ace/Stream.h
+++ b/ACE/ace/Stream.h
@@ -84,7 +84,7 @@ public:
virtual int close (int flags = M_DELETE);
/// Close down the stream and release all the resources.
- virtual ~ACE_Stream (void);
+ virtual ~ACE_Stream ();
// = ACE_Stream plumbing operations
@@ -117,10 +117,10 @@ public:
int flags = M_DELETE);
/// Return current stream head.
- virtual ACE_Module<ACE_SYNCH_USE, TIME_POLICY> *head (void);
+ virtual ACE_Module<ACE_SYNCH_USE, TIME_POLICY> *head ();
/// Return current stream tail.
- virtual ACE_Module<ACE_SYNCH_USE, TIME_POLICY> *tail (void);
+ virtual ACE_Module<ACE_SYNCH_USE, TIME_POLICY> *tail ();
/// Find a particular ACE_Module.
virtual ACE_Module<ACE_SYNCH_USE, TIME_POLICY> *find (const ACE_TCHAR *mod);
@@ -129,7 +129,7 @@ public:
virtual int link (ACE_Stream<ACE_SYNCH_USE, TIME_POLICY> &);
/// Remove a pipe formed between two Streams.
- virtual int unlink (void);
+ virtual int unlink ();
// = Blocking data transfer operations
/**
@@ -157,7 +157,7 @@ public:
virtual int wait (void);
/// Dump the state of an object.
- virtual void dump (void) const;
+ virtual void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;