summaryrefslogtreecommitdiff
path: root/ACE/tests/Based_Pointer_Test_Lib.cpp
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
commitc4078c377d74290ebe4e66da0b4975da91732376 (patch)
tree1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/tests/Based_Pointer_Test_Lib.cpp
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/tests/Based_Pointer_Test_Lib.cpp')
-rw-r--r--ACE/tests/Based_Pointer_Test_Lib.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/ACE/tests/Based_Pointer_Test_Lib.cpp b/ACE/tests/Based_Pointer_Test_Lib.cpp
deleted file mode 100644
index e7047b70fa3..00000000000
--- a/ACE/tests/Based_Pointer_Test_Lib.cpp
+++ /dev/null
@@ -1,39 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Based_Pointer_Test_Lib.cpp
-//
-// = DESCRIPTION
-// This test confirms the function of the Based_Pointer_Repository
-//
-// = AUTHOR
-// Steve Williams <steve@telxio>
-//
-// ============================================================================
-
-#include "ace/ACE.h"
-#include "ace/svc_export.h"
-#include "ace/Based_Pointer_Repository.h"
-
-ACE_RCSID (tests,
- Based_Pointer_Repository_DLL_Test,
- "$Id$")
-
-#if defined (ACE_OPENVMS)
- // with OPENVMS symbol names > 31 cause us trouble with dlsym()
-extern "C" ACE_Svc_Export void *
-get_based_pointer_repo_inst (void)
-#else
-extern "C" ACE_Svc_Export void *
-get_based_pointer_repository_instance (void)
-#endif
-{
- void* baddr = ACE_BASED_POINTER_REPOSITORY::instance();
- return baddr;
-}
-