blob: 53a4bc578ff806e77d3f9b39de4885a98d29b4b8 (
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
|
/* -*- C++ -*- */
//=============================================================================
/**
* @file HTTP_Parser.h
*
* @author Johnny Willemsen <jwillemsen@remedy.nl>
*/
//=============================================================================
#ifndef TAO_HTTP_PARSER_H
#define TAO_HTTP_PARSER_H
#include /**/ "ace/pre.h"
#include "ace/Service_Config.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/IOR_Parser.h"
#if (TAO_HAS_HTTP_PARSER == 1)
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_HTTP_Parser
*
* @brief Implements the <http:> IOR format
*
* This class implements the <http:> IOR format.
* It is dynamically loaded by the ORB and used to get an IOR
* from a http server and then interprete the data as an IOR (that
* can be in any valid format).
*/
class TAO_HTTP_Parser : public TAO_IOR_Parser
{
public:
/// The destructor
virtual ~TAO_HTTP_Parser (void);
// = The IOR_Parser methods, please read the documentation in
// IOR_Parser.h
virtual bool match_prefix (const char *ior_string) const;
virtual CORBA::Object_ptr parse_string (const char *ior, CORBA::ORB_ptr orb);
};
ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_HTTP_Parser)
ACE_FACTORY_DECLARE (TAO, TAO_HTTP_Parser)
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_HTTP_PARSER == 1 */
#include /**/ "ace/post.h"
#endif /* TAO_HTTP_PARSER_H */
|