diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-29 01:19:45 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-29 01:19:45 +0000 |
commit | d716503baa07e6a243e279c3bb6b91e35b50ec89 (patch) | |
tree | 7cfd9d71b22d0efc69b0447b0a0fde0c6cb713ab /ace/Stream_Modules.h | |
parent | 742c04c6fe01984a9699acfc664b0c88d9f5d5dc (diff) | |
download | ATCD-d716503baa07e6a243e279c3bb6b91e35b50ec89.tar.gz |
new changes
Diffstat (limited to 'ace/Stream_Modules.h')
-rw-r--r-- | ace/Stream_Modules.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ace/Stream_Modules.h b/ace/Stream_Modules.h index 71db2247af5..bd64afbf828 100644 --- a/ace/Stream_Modules.h +++ b/ace/Stream_Modules.h @@ -26,6 +26,12 @@ class ACE_Stream_Head : public ACE_Task<ACE_SYNCH_2> // Standard module that acts as the head of a ustream. { public: + ACE_Stream_Head (); + // Construction + + ~ACE_Stream_Head (); + // Destruction + // = ACE_Task hooks virtual int open (void *a = 0); virtual int close (u_long flags = 0); @@ -55,6 +61,12 @@ class ACE_Stream_Tail : public ACE_Task<ACE_SYNCH_2> // Standard module that acts as the head of a ustream. { public: + ACE_Stream_Tail (); + // Construction + + ~ACE_Stream_Tail (); + // Destruction + // = ACE_Task hooks virtual int open (void *a = 0); virtual int close (u_long flags = 0); @@ -85,6 +97,12 @@ class ACE_Thru_Task : public ACE_Task<ACE_SYNCH_2> // data to its adjacent neighbor. { public: + ACE_Thru_Task (); + // Construction + + ~ACE_Thru_Task (); + // Destruction + // = ACE_Task hooks virtual int open (void *a = 0); virtual int close (u_long flags = 0); |