Static Public Member Functions

be_util Class Reference

#include <be_util.h>

List of all members.

Static Public Member Functions

static TAO_IFR_BE_Export void prep_be_arg (char *s)
 Special BE arg call factored out of DRV_args.
static TAO_IFR_BE_Export void arg_post_proc (void)
 Checks made after parsing args.
static TAO_IFR_BE_Export void usage (void)
 Display usage of BE-specific options.
static TAO_IFR_BE_Export
AST_Generator * 
generator_init (void)
 Create an AST node generator.

Detailed Description

Definition at line 23 of file be_util.h.


Member Function Documentation

void be_util::arg_post_proc ( void   )  [static]

Checks made after parsing args.

Definition at line 29 of file be_util.cpp.

{
}

AST_Generator * be_util::generator_init ( void   )  [static]

Create an AST node generator.

Definition at line 49 of file be_util.cpp.

{
  AST_Generator *gen = 0;
  ACE_NEW_RETURN (gen,
                  AST_Generator,
                  0);
  return gen;
}

void be_util::prep_be_arg ( char *  s  )  [static]

Special BE arg call factored out of DRV_args.

Definition at line 24 of file be_util.cpp.

{
}

void be_util::usage ( void   )  [static]

Display usage of BE-specific options.

Definition at line 34 of file be_util.cpp.

{
  ACE_DEBUG ((
      LM_DEBUG,
      ACE_TEXT (" -o <dir>\t\tOutput directory for the generated file.")
      ACE_TEXT (" Default is current directory\n")
    ));
  ACE_DEBUG ((
      LM_DEBUG,
      ACE_TEXT (" -e\t\t\tGenerate just an include of original IDL file")
      ACE_TEXT (" if no IDL3 declarations are found\n")
    ));
}


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Defines