summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/Config_Handlers/ERE_Handler.h
blob: 272bd8ecc63062caa0f7feb56a276ed8d4c7e112 (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

//==================================================================
/**
 *  @file  ERE_Handler.h
 *
 *  $Id$
 *
 *  @author Arvind S. Krishna <arvindk@dre.vanderbilt.edu>
 */
//=====================================================================

#ifndef ERE_HANDLER_H
#define ERE_HANDLER_H
#include /**/ "ace/pre.h"

#include "ciao/DeploymentC.h"

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

#include "Config_Handler_export.h"
#include <xercesc/util/XercesDefs.hpp>
#include <xercesc/dom/DOM.hpp>
#include "XercesString.h"

using Config_Handler::XStr;
using xercesc::XMLString;
using xercesc::DOMImplementation;
using xercesc::DOMText;
using xercesc::DOMNodeIterator;
using xercesc::DOMNode;

namespace CIAO
{
  namespace Config_Handler
  {
    /**
     * @class ERE_Handler
     *
     * @brief Handler class for <ExternalReferenceEndpoint> tag
     *
     * This class defines handler methods to parse the aforementioned type
     * in the descriptor files. The corresponding CORBA IDL type for this
     * element is returned.
     */

    class Config_Handler_Export ERE_Handler
    {
    public:
      static void  
        process_ExternalReferenceEndpoint (DOMNodeIterator * iter,
                                           Deployment::ExternalReferenceEndpoint &ret_struct);
      // process <ExternalReferenceEndpoint> definitions in the descriptor
      // files

    };
  }
}

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

#endif /* ERE_HANDLER_H */