summaryrefslogtreecommitdiff
path: root/ace/FILE_Addr.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-01 16:43:24 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-08-01 16:43:24 +0000
commitb462a7a9d307c5f5eff30a24008045c0e3d0185a (patch)
treea9efcb39b9e041e5cf70e17090c76df8b5354b47 /ace/FILE_Addr.h
parent7e1358bc65c1d08e3ba99af5b7e5869e1cd2c47f (diff)
downloadATCD-TAO-1_1_7.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-1_1_7'.TAO-1_1_7
Diffstat (limited to 'ace/FILE_Addr.h')
-rw-r--r--ace/FILE_Addr.h85
1 files changed, 0 insertions, 85 deletions
diff --git a/ace/FILE_Addr.h b/ace/FILE_Addr.h
deleted file mode 100644
index 8ab7c4c17b5..00000000000
--- a/ace/FILE_Addr.h
+++ /dev/null
@@ -1,85 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ace
-//
-// = FILENAME
-// FILE_Addr.h
-//
-// = AUTHOR
-// Douglas C. Schmidt <schmidt@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ACE_FILE_ADDR_H
-#define ACE_FILE_ADDR_H
-#include "ace/pre.h"
-
-#include "ace/Addr.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/ACE.h"
-
-class ACE_Export ACE_FILE_Addr : public ACE_Addr
-{
- // = TITLE
- // Defines the FILE address family address format.
-public:
- // = Initialization methods.
- ACE_FILE_Addr (void);
- // Default constructor.
-
- ACE_FILE_Addr (const ACE_FILE_Addr &sa);
- // Copy constructor.
-
- int set (const ACE_FILE_Addr &sa);
- // Acts like a copy constructor. If <sa> == ACE_Addr::sap_any then
- // create a temporary filename using <ACE_OS::mktemp>.
-
- ACE_EXPLICIT ACE_FILE_Addr (const ACE_TCHAR *filename);
- // Create a ACE_FILE_Addr from a pathname.
-
- int set (const ACE_TCHAR *filename);
- // Create a ACE_FILE_Addr from a pathname.
-
- ACE_FILE_Addr &operator= (const ACE_FILE_Addr &);
- // Assignment operator.
-
- virtual void *get_addr (void) const;
- // Return a pointer to the address.
-
- virtual int addr_to_string (ACE_TCHAR *addr, size_t) const;
- // Transform the current address into string format.
-
- int operator == (const ACE_FILE_Addr &SAP) const;
- // Compare two addresses for equality.
-
- int operator != (const ACE_FILE_Addr &SAP) const;
- // Compare two addresses for inequality.
-
- const ACE_TCHAR *get_path_name (void) const;
- // Return the path name used for the rendezvous point.
-
- void dump (void) const;
- // Dump the state of an object.
-
- ACE_ALLOC_HOOK_DECLARE;
- // Declare the dynamic allocation hooks.
-
-private:
- ACE_TCHAR filename_[MAXNAMLEN + 1];
- // Name of the file.
-};
-
-#if defined (__ACE_INLINE__)
-#include "ace/FILE_Addr.i"
-#endif /* __ACE_INLINE__ */
-
-#include "ace/post.h"
-#endif /* ACE_FILE_ADDR_H */