summaryrefslogtreecommitdiff
path: root/TAO/tests/IDLv4/annotations/be_util.h
blob: 001cdffddee429f64729f7ea7af0f81c1d62a5e5 (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
#ifndef ANNOTEST_IDL_BE_UTIL_HEADER
#define ANNOTEST_IDL_BE_UTIL_HEADER

class TAO_OutStream;
class be_module;
class AST_Decl;
class AST_Generator;

class be_util
{
public:
  /// Special BE arg call factored out of DRV_args.
  static void prep_be_arg (char *s);

  /// Checks made after parsing args.
  static void arg_post_proc ();

  /// Display usage of BE-specific options.
  static void usage ();

  /// Create an AST node generator.
  static AST_Generator *generator_init ();
};

#endif