summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/smart_proxy_ch.h
blob: 7111c0d3a561f83cd12113d35d058af149d1e6b7 (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

//=============================================================================
/**
 *  @file    smart_proxy_ch.h
 *
 *  Visitor for generating code for IDL operations for the smart proxy case
 *  inside of the client stubs header
 *
 *  @author Kirthika Parameswaran  <kirthika@cs.wustl.edu>
 */
//=============================================================================


#ifndef _BE_VISITOR_OPERATION_SMART_PROXY_CH_H_
#define _BE_VISITOR_OPERATION_SMART_PROXY_CH_H_

// ************************************************************
// Operation visitor for client header in the smart proxy class
// ************************************************************

/**
 * @class be_visitor_operation_smart_proxy_ch
 *
 * @brief be_visitor_operation_smart_proxy_ch
 *
 * This is a concrete visitor to generate the client header for operation
 * in the smart proxy class
 */
class be_visitor_operation_smart_proxy_ch : public be_visitor_scope
{
public:
  /// constructor
  be_visitor_operation_smart_proxy_ch (be_visitor_context *ctx);

  /// destructor
  ~be_visitor_operation_smart_proxy_ch (void);

  /// visit operation node.
  virtual int visit_operation (be_operation *node);
};

#endif /* _BE_VISITOR_OPERATION_SMART_PROXY_CH_H_ */