blob: df4a1843e63663591815a0c17f23a7b72ad3b245 (
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
63
64
|
// -*- C++ -*-
//=============================================================================
/**
* @file Dynamic_Service.h
*
* $Id$
*
* @author Prashant Jain <pjain@cs.wustl.edu>
* @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
*/
//=============================================================================
#ifndef ACE_DYNAMIC_SERVICE_H
#define ACE_DYNAMIC_SERVICE_H
#include /**/ "ace/pre.h"
#include "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Dynamic_Service_Base.h"
class ACE_Service_Object;
/**
* @class ACE_Dynamic_Service
*
* @brief Provides a general interface to retrieve arbitrary objects
* from the ACE service repository.
*
* Uses "name" for lookup in the ACE service repository. Obtains
* the object and returns it as the appropriate type.
*/
template <class TYPE>
class ACE_Dynamic_Service : public ACE_Dynamic_Service_Base
{
public:
/// Return instance using <name> to search the Service_Repository.
static TYPE*instance (const ACE_TCHAR *name);
#if defined (ACE_USES_WCHAR)
static TYPE* instance (const ACE_ANTI_TCHAR *name);
#endif // ACE_USES_WCHAR
};
#if defined (__ACE_INLINE__)
#include "ace/Dynamic_Service.i"
#endif /* __ACE_INLINE__ */
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
# include "ace/Dynamic_Service.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
# pragma implementation ("Dynamic_Service.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
#include /**/ "ace/post.h"
#endif /* ACE_DYNAMIC_SERVICE_H */
|