summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_init.cpp
blob: cb6171337103d9e88873607d1275fc9e6e7eed21 (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
#include "global_extern.h"
#include "be_extern.h"
#include "../../tao/Version.h"

TAO_IDL_BE_Export void
BE_version ()
{
  ACE_DEBUG ((LM_DEBUG,
              ACE_TEXT ("TAO_IDL_BE, version ") ACE_TEXT (TAO_VERSION)
              ACE_TEXT ("\n")));
}

TAO_IDL_BE_Export int
BE_init (int &, ACE_TCHAR *[])
{
  // Initialize BE global data object.
  ACE_NEW_RETURN (be_global,
                  BE_GlobalData,
                  -1);

  idl_global->default_idl_version_ = IDL_VERSION_3;

  return 0;
}

TAO_IDL_BE_Export void
BE_post_init (char *[], long)
{
}