summaryrefslogtreecommitdiff
path: root/CIAO/tools/IDL3_to_IDL2/be_sunsoft.h
blob: 7e52a9de42d976c3e55c5d0236181b2faa5833ff (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
/* -*- c++ -*- */

//=============================================================================
/**
 *  @file    be_sunsoft.h
 *
 *  SunSoft specific backend output generation
 *
 *  @author Aniruddha Gokhale
 */
//=============================================================================


#ifndef TAO_BE_HELPER_H
#define TAO_BE_HELPER_H

#include "be_helper.h"

/**
 * @class TAO_SunSoft_OutStream
 *
 * Backend specific to SunSoft AST nodes
 */
class TAO_IDL3_TO_IDL2_BE_Export TAO_SunSoft_OutStream : public TAO_OutStream
{
public:
  /// constructor
  TAO_SunSoft_OutStream (void);

  /// destuctor
  ~TAO_SunSoft_OutStream (void);

  /// output the SunSoft IDL Identifier Node
  virtual TAO_OutStream &print (Identifier *id);

  /// output the contents of the AST_Expression node
  virtual TAO_OutStream &print (AST_Expression *expr);
};

#endif // if !defined