summaryrefslogtreecommitdiff
path: root/deps/acelite/ace/Auto_Event.cpp
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2021-07-16 20:49:44 +0700
committerGitHub <noreply@github.com>2021-07-16 15:49:44 +0200
commit6e082e351393ab56993025e5cf0e12557e81fdf3 (patch)
treeab39913e771d12ab31d8cdecc51b116c5ef35898 /deps/acelite/ace/Auto_Event.cpp
parent96c51317f57ac038fd135ac6032592f9bc188d5a (diff)
feat(Deps/ACE): remove ACE library (part 2/2) (#5679)
Diffstat (limited to 'deps/acelite/ace/Auto_Event.cpp')
-rw-r--r--deps/acelite/ace/Auto_Event.cpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/deps/acelite/ace/Auto_Event.cpp b/deps/acelite/ace/Auto_Event.cpp
deleted file mode 100644
index c95c0e855c..0000000000
--- a/deps/acelite/ace/Auto_Event.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-#include "ace/Auto_Event.h"
-
-#if !defined (__ACE_INLINE__)
-#include "ace/Auto_Event.inl"
-#endif /* __ACE_INLINE__ */
-
-#if defined (ACE_HAS_ALLOC_HOOKS)
-# include "ace/Malloc_Base.h"
-#endif /* ACE_HAS_ALLOC_HOOKS */
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_ALLOC_HOOK_DEFINE_Tc(ACE_Auto_Event_T)
-
-template <class TIME_POLICY>
-ACE_Auto_Event_T<TIME_POLICY>::ACE_Auto_Event_T (
- int initial_state,
- int type,
- const char *name,
- void *arg)
- : ACE_Event_T<TIME_POLICY> (0,
- initial_state,
- type,
- ACE_TEXT_CHAR_TO_TCHAR (name),
- arg)
-{
-}
-
-#if defined (ACE_HAS_WCHAR)
-template <class TIME_POLICY>
-ACE_Auto_Event_T<TIME_POLICY>::ACE_Auto_Event_T (
- int initial_state,
- int type,
- const wchar_t *name,
- void *arg)
- : ACE_Event_T<TIME_POLICY> (0,
- initial_state,
- type,
- ACE_TEXT_WCHAR_TO_TCHAR (name),
- arg)
-{
-}
-#endif /* ACE_HAS_WCHAR */
-
-template <class TIME_POLICY>
-void
-ACE_Auto_Event_T<TIME_POLICY>::dump (void) const
-{
-#if defined (ACE_HAS_DUMP)
- ACE_Event_T<TIME_POLICY>::dump ();
-#endif /* ACE_HAS_DUMP */
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL