summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_init.cpp
blob: c1bd5233162711058a89884f942c7e9d68ece093 (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
// $Id$

#include "global_extern.h"
#include "be_extern.h"
#include "../../tao/Version.h"

TAO_IDL_BE_Export void
BE_version (void)
{
  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);

  return 0;
}

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