Manual_Event.cpp

Go to the documentation of this file.
00001 // $Id: Manual_Event.cpp 80826 2008-03-04 14:51:23Z wotte $
00002 
00003 #include "ace/Manual_Event.h"
00004 
00005 #if !defined (__ACE_INLINE__)
00006 #include "ace/Manual_Event.inl"
00007 #endif /* __ACE_INLINE__ */
00008 
00009 
00010 ACE_RCSID(ace, Manual_Event, "$Id: Manual_Event.cpp 80826 2008-03-04 14:51:23Z wotte $")
00011 
00012 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
00013 
00014 ACE_Manual_Event::ACE_Manual_Event (int initial_state,
00015                                     int type,
00016                                     const char *name,
00017                                     void *arg)
00018   : ACE_Event (1,
00019                initial_state,
00020                type,
00021                ACE_TEXT_CHAR_TO_TCHAR (name),
00022                arg)
00023 {
00024 }
00025 
00026 #if defined (ACE_HAS_WCHAR)
00027 ACE_Manual_Event::ACE_Manual_Event (int initial_state,
00028                                     int type,
00029                                     const wchar_t *name,
00030                                     void *arg)
00031   : ACE_Event (1,
00032                initial_state,
00033                type,
00034                ACE_TEXT_WCHAR_TO_TCHAR (name),
00035                arg)
00036 {
00037 }
00038 #endif /* ACE_HAS_WCHAR */
00039 
00040 void
00041 ACE_Manual_Event::dump (void) const
00042 {
00043 #if defined (ACE_HAS_DUMP)
00044   ACE_Event::dump ();
00045 #endif /* ACE_HAS_DUMP */
00046 }
00047 
00048 ACE_END_VERSIONED_NAMESPACE_DECL

Generated on Tue Feb 2 17:18:40 2010 for ACE by  doxygen 1.4.7