// Typed_SV_Message_Queue.cpp // $Id$ #ifndef ACE_TYPED_SV_MESSAGE_QUEUE_C #define ACE_TYPED_SV_MESSAGE_QUEUE_C #define ACE_BUILD_DLL #include "ace/Typed_SV_Message.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ #include "ace/Typed_SV_Message_Queue.h" #if !defined (__ACE_INLINE__) #include "ace/Typed_SV_Message_Queue.i" #endif /* __ACE_INLINE__ */ ACE_RCSID(ace, Typed_SV_Message_Queue, "$Id$") ACE_ALLOC_HOOK_DEFINE(ACE_Typed_SV_Message_Queue) template void ACE_Typed_SV_Message_Queue::dump (void) const { ACE_TRACE ("ACE_Typed_SV_Message_Queue::dump"); } template ACE_Typed_SV_Message_Queue::ACE_Typed_SV_Message_Queue (void) { ACE_TRACE ("ACE_Typed_SV_Message_Queue::ACE_Typed_SV_Message_Queue"); } template ACE_Typed_SV_Message_Queue::ACE_Typed_SV_Message_Queue (key_t external_id, int create, int perms) { ACE_TRACE ("ACE_Typed_SV_Message_Queue::ACE_Typed_SV_Message_Queue"); if (this->open (external_id, create, perms) == -1) ACE_ERROR ((LM_ERROR, "ACE_Typed_SV_Message_Queue::ACE_Typed_SV_Message_Queue")); } template ACE_Typed_SV_Message_Queue::~ACE_Typed_SV_Message_Queue (void) { ACE_TRACE ("ACE_Typed_SV_Message_Queue::~ACE_Typed_SV_Message_Queue"); } #endif /* ACE_TYPED_SV_MESSAGE_QUEUE_C */