summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_init.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2006-07-24 15:50:11 +0000
commit6b846cf03c0bcbd8c276cb0af61a181e5f98eaae (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/TAO_IDL/be/be_init.cpp
parent0e555b9150d38e3b3473ba325b56db2642e6352b (diff)
downloadATCD-6b846cf03c0bcbd8c276cb0af61a181e5f98eaae.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/TAO_IDL/be/be_init.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_init.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/TAO/TAO_IDL/be/be_init.cpp b/TAO/TAO_IDL/be/be_init.cpp
deleted file mode 100644
index 65fee2a4821..00000000000
--- a/TAO/TAO_IDL/be/be_init.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-// $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,
- "%s %s\n",
- ACE_TEXT ("TAO_IDL_BE, version"),
- ACE_TEXT (TAO_VERSION)));
-}
-
-TAO_IDL_BE_Export int
-BE_init (int &, char *[])
-{
- // 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)
-{
-}
-