diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-03-05 17:14:45 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-03-05 17:14:45 +0000 |
commit | 58033491c6d0bac82315c1fdb1ec9b39be58093f (patch) | |
tree | c69c3aa67ec66758066e959bd0d533ea336ec236 /ace/Manual_Event.cpp | |
parent | 2efc882384a34f61311a24fc641d1b5fd5776356 (diff) | |
download | ATCD-TAO-1_5.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-1_5'.TAO-1_5
Diffstat (limited to 'ace/Manual_Event.cpp')
-rw-r--r-- | ace/Manual_Event.cpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/ace/Manual_Event.cpp b/ace/Manual_Event.cpp deleted file mode 100644 index 57543a6d840..00000000000 --- a/ace/Manual_Event.cpp +++ /dev/null @@ -1,48 +0,0 @@ -// $Id$ - -#include "ace/Manual_Event.h" - -#if !defined (__ACE_INLINE__) -#include "ace/Manual_Event.inl" -#endif /* __ACE_INLINE__ */ - - -ACE_RCSID(ace, Manual_Event, "$Id$") - -ACE_BEGIN_VERSIONED_NAMESPACE_DECL - -ACE_Manual_Event::ACE_Manual_Event (int initial_state, - int type, - const char *name, - void *arg) - : ACE_Event (1, - initial_state, - type, - ACE_TEXT_CHAR_TO_TCHAR (name), - arg) -{ -} - -#if defined (ACE_HAS_WCHAR) -ACE_Manual_Event::ACE_Manual_Event (int initial_state, - int type, - const wchar_t *name, - void *arg) - : ACE_Event (1, - initial_state, - type, - ACE_TEXT_WCHAR_TO_TCHAR (name), - arg) -{ -} -#endif /* ACE_HAS_WCHAR */ - -void -ACE_Manual_Event::dump (void) const -{ -#if defined (ACE_HAS_DUMP) - ACE_Event::dump (); -#endif /* ACE_HAS_DUMP */ -} - -ACE_END_VERSIONED_NAMESPACE_DECL |