/* -*- C++ -*- */ // $Id$ // ============================================================================ // // = LIBRARY // ace // // = FILENAME // CORBA_Ref.h // // = AUTHOR // Irfan Pyarali (irfan@wuerl.wustl.edu). // Tim Harrison (harrison@cs.wustl.edu) // // = DESCRIPTION // A wrapper for helping with Orbix object references. // // ============================================================================ #ifndef ACE_CORBA_REF_H #define ACE_CORBA_REF_H #include "ace/pre.h" #include "ace/ACE.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ template class ACE_CORBA_Ref { // = TITLE // A wrapper for helping with Orbix object references. // // = DESCRIPTION // is parameterized by the type of orbix object // reference to be used. The construtor, operator=, and the // destructor of perform implicit duplicates and // releases in order to help make the use of Orbix object // references transparent. public: ACE_CORBA_Ref (void); // Null construction. ACE_CORBA_Ref (CORBA_REF *ref); // Contruction with an orbix ref. // performs a . CORBA_REF *operator= (CORBA_REF *ref); // Assignment performs a . operator CORBA_REF *(void) const; // Type operator CORBA_REF *operator-> (void) const; // Smart pointer to forward all CORBA_REF calls to the underlying // Orbix reference. int operator== (CORBA_REF *) const; // Pointer comparison. int operator!= (CORBA_REF *) const; // Pointer comparison. ~ACE_CORBA_Ref (void); // Destruction: calls . private: CORBA_REF *ref_; }; #if defined (ACE_TEMPLATES_REQUIRE_SOURCE) #include "ace/CORBA_Ref.cpp" #endif /* ACE_TEMPLATES_REQUIRE_SOURCE */ #if defined (ACE_TEMPLATES_REQUIRE_PRAGMA) #pragma implementation ("CORBA_Ref.cpp") #endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */ #include "ace/post.h" #endif /* CORBA_REF_H */