aboutsummaryrefslogtreecommitdiff
path: root/dep/acelite/ace/Functor.cpp
diff options
context:
space:
mode:
authorleak <leak@bitmx.net>2014-07-06 01:42:12 +0200
committerleak <leak@bitmx.net>2014-07-06 01:42:35 +0200
commitda3f6e923a0cb72976d7b56ace49023ecf58ceaa (patch)
tree55c767b5f3afddc339f088f2d45a470968a8bb5d /dep/acelite/ace/Functor.cpp
parent7befb26625dd1eeb237e223296d9ed8817297025 (diff)
Completely remove ACE as dependency for TC - kkthxbye
Diffstat (limited to 'dep/acelite/ace/Functor.cpp')
-rw-r--r--dep/acelite/ace/Functor.cpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/dep/acelite/ace/Functor.cpp b/dep/acelite/ace/Functor.cpp
deleted file mode 100644
index 09e80a587a9..00000000000
--- a/dep/acelite/ace/Functor.cpp
+++ /dev/null
@@ -1,53 +0,0 @@
-
-//=============================================================================
-/**
- * @file Functor.cpp
- *
- * $Id: Functor.cpp 95332 2011-12-15 11:09:41Z mcorino $
- *
- * Non-inlinable method definitions for non-templatized classes
- * and template specializations implementing the GOF Command Pattern,
- * and STL-style functors.
- *
- *
- * @author Chris Gill <cdgill@cs.wustl.edu>
- *
- * Based on Command Pattern implementations originally done by
- *
- * Carlos O'Ryan <coryan@cs.wustl.edu>
- * Douglas C. Schmidt <schmidt@cs.wustl.edu>
- * Sergio Flores-Gaitan <sergio@cs.wustl.edu>
- *
- * and on STL-style functor implementations originally done by
- *
- * Irfan Pyarali <irfan@cs.wustl.edu>
- */
-//=============================================================================
-
-
-#include "ace/Functor_T.h"
-#include "ace/Functor.h"
-
-#if !defined (__ACE_INLINE__)
-#include "ace/Functor.inl"
-#endif /* __ACE_INLINE__ */
-
-
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_Command_Base::~ACE_Command_Base (void)
-{
-}
-
-ACE_Noop_Command::ACE_Noop_Command()
-{
-}
-
-int
-ACE_Noop_Command::execute(void*)
-{
- return 0;
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL