blob: 8922297a7c94e1389a8d04ab3276935f49696955 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
// -*- C++ -*-
//=============================================================================
/**
* @file Implicit_Deactivator.h
*
* $Id$
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*/
//=============================================================================
#ifndef TAO_UTILS_IMPLICIT_DEACTIVATOR_H
#define TAO_UTILS_IMPLICIT_DEACTIVATOR_H
#include /**/ "ace/pre.h"
#include "tao/Utils/utils_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/PortableServer/PortableServer.h"
#include "ace/Auto_Functor.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
namespace Utils
{
/**
* @struct Implicit_Deactivation_Functor
*
* @brief Implements a functor for the Implicit_Deactivator class.
*/
struct TAO_UTILS_Export Implicit_Deactivation_Functor
{
typedef PortableServer::ServantBase * argument;
// Deactivate an implicitly activated servant
void operator() (PortableServer::ServantBase * servant) throw ();
};
/**
* @class Implicit_Deactivator
*
* @brief Helper class to deactivate implicitly activated servants.
*
*/
typedef ACE_Utils::Auto_Functor<
PortableServer::ServantBase,
Implicit_Deactivation_Functor>
Implicit_Deactivator;
} // namespace Utils
} // namespace TAO
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /*TAO_UTILS_IMPLICIT_DEACTIVATOR_H*/
|