diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-01 08:00:34 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-01 08:00:34 +0000 |
commit | 437eea6fa08e931864f89be91d14a816f69075c7 (patch) | |
tree | b8c1fd723fdcd61c3855d3a3a21a9cd45a268219 /ace/Shared_Object.h | |
parent | ea0d28240863caf437a18071bfd03e7b146c5ade (diff) | |
download | ATCD-unlabeled-4.2.2.tar.gz |
This commit was manufactured by cvs2svn to create branchunlabeled-4.2.2
'unlabeled-4.2.2'.
Diffstat (limited to 'ace/Shared_Object.h')
-rw-r--r-- | ace/Shared_Object.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/ace/Shared_Object.h b/ace/Shared_Object.h deleted file mode 100644 index 7298a53b9a6..00000000000 --- a/ace/Shared_Object.h +++ /dev/null @@ -1,45 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - - -// ============================================================================ -// -// = LIBRARY -// ace -// -// = FILENAME -// Shared_Object.h -// -// = AUTHOR -// Doug Schmidt -// -// ============================================================================ - -#if !defined (ACE_SHARED_OBJECT_H) -#define ACE_SHARED_OBJECT_H - -#include "ace/ACE.h" - -class ACE_Export ACE_Shared_Object - // = TITLE - // Provide the abstract base class used to access dynamic linking - // facilities -{ -public: - virtual int init (int argc, char *argv[]); - // Initializes object when dynamic linking occurs. - - virtual int fini (void); - // Terminates object when dynamic unlinking occurs. - - virtual int info (char **info_string, size_t length = 0) const; - // Returns information on active object. - - virtual ~ACE_Shared_Object (void); -}; - -#if defined (__ACE_INLINE__) -#include "ace/Shared_Object.i" -#endif /* __ACE_INLINE__ */ - -#endif /* ACE_SHARED_OBJECT_H */ |