diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-12-05 23:29:39 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-12-05 23:29:39 +0000 |
commit | b64537275f7a2f65888f3e7def08b39bf87afbdb (patch) | |
tree | dd88f510132813dda4aff0c2c1d25aa4f972589c /ace/Addr.h | |
parent | ab11a5258bb8a032f85e01571e7fe5485b2b5144 (diff) | |
download | ATCD-b64537275f7a2f65888f3e7def08b39bf87afbdb.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Addr.h')
-rw-r--r-- | ace/Addr.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/ace/Addr.h b/ace/Addr.h index 331c4a4251f..732910527e6 100644 --- a/ace/Addr.h +++ b/ace/Addr.h @@ -27,7 +27,8 @@ class ACE_Export ACE_Addr public: // = Initialization method. - ACE_Addr (int type = -1, int size = -1); + ACE_Addr (int type = -1, + int size = -1); // Initializes instance variables. // = Get/set the size of the address. @@ -49,7 +50,8 @@ public: virtual void *get_addr (void) const; // Return a pointer to the address. - virtual void set_addr (void *, int len); + virtual void set_addr (void *, + int len); // Set a pointer to the address. // = Equality/inequality tests @@ -59,11 +61,12 @@ public: int operator != (const ACE_Addr &sap) const; // Check for address inequality. - void base_set (int type, int size); + void base_set (int type, + int size); // Initializes instance variables. #if defined (ACE_HAS_BROKEN_SAP_ANY) - static const ACE_Addr sap_any (void); + static const ACE_Addr &sap_any (void); // Wild-card address. // This #define works around broken C++ compilers... |