blob: d83ef473c6f5dd496afc6c4d7392bf181d98dcd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// Functor.cpp
//
// = DESCRIPTION
// 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> and
// Douglas C. Schmidt <schmidt@cs.wustl.edu> and
// Sergio Flores-Gaitan <sergio@cs.wustl.edu>
//
// and on STL-style functor implementations originally done by
//
// Irfan Pyarali <irfan@cs.wustl.edu>
//
// ============================================================================
#if !defined (ACE_FUNCTOR_C)
#define ACE_FUNCTOR_C
#include "ace/Functor_T.h"
#include "ace/Functor.h"
#if !defined (__ACE_INLINE__)
#include "ace/Functor.i"
#endif /* __ACE_INLINE__ */
ACE_RCSID(ace, Functor, "$Id$")
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
#endif /* ACE_FUNCTOR_C */
|