summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Config_Handlers/RT-CCM/OR_Handler.h
blob: 928ed1bb28689d7beac64176311369d116bd1755 (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
//=========================================================
/*
 *  @file OR_Handler.h
 *
 *  @author Lucas Seibert <lseibert@dre.vanderbilt.edu
 *  @author Will Otte <wotte@dre.vanderbilt.edu>
 *
 * $Id$
 */
//=========================================================

#ifndef CIAO_CONFIG_HANDLERS_OR_HANDLER_H
#define CIAO_CONFIG_HANDLERS_OR_HANDLER_H

#include /**/ "ace/pre.h"

#include "ciao/ServerResourcesC.h"
#include "RT_CCM_Handlers_Export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

namespace CIAO
{
    namespace Config_Handlers
    {
	class ORBResources;

	/* Class description
	 * @class OR_Handler
	 * @function A brief Handler class for the <ORBResource> member
	 */

	class RT_CCM_Handlers_Export OR_Handler
	{
	public:
          
          static bool orb_resources (const ORBResources &src,
                                     ::CIAO::DAnCE::ORBResources &dest);
          
          class No_Resource {};
          
          static ORBResources orb_resources (const ::CIAO::DAnCE::ORBResources &src)
            throw (No_Resource);
          
          
	};
    }
}

#include /**/ "ace/post.h"

#endif /* CIAO_CONFIG_HANDLERS_OR_HANDLER_H */