summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h
blob: 1beb3814d9df59833ae64ee9538436b0b7005f02 (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
//=============================================================================
/**
*  @file   amh_rh_ss.h
*
*  Creates code for AMH-RH operations.
*
*  @author Darrell Brunsch <brunsch@cs.wustl.edu>
*/
//=============================================================================

#ifndef AMH_RH_OPERATION_SS_H
#define AMH_RH_OPERATION_SS_H

/**
 * @class be_visitor_operation_amh_rh_ss
 *
 * @brief This is a concrete visitor to generate the server source for
 *        AMH operations
 */

#include "be_visitor_operation.h"

class be_visitor_amh_rh_operation_ss : public be_visitor_operation
{
 public:
    be_visitor_amh_rh_operation_ss (be_visitor_context *ctx);

    ~be_visitor_amh_rh_operation_ss (void);

    int visit_operation (be_operation *node);

 private:
    int marshal_params (be_operation *node);
};

#endif /* AMH_RH_OPERATION_SS_H */