summaryrefslogtreecommitdiff
path: root/TAO/tao/SmartProxies
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
commit8008dd09ccf88d4edef237a184a698cac42f2952 (patch)
treeda50d054f9c761c3f6a5923f6979e93306c56d68 /TAO/tao/SmartProxies
parent13d6e89af439164c0ade48e6f5c3e9b3f971e8c9 (diff)
downloadATCD-8008dd09ccf88d4edef237a184a698cac42f2952.tar.gz
Repo restructuring
Diffstat (limited to 'TAO/tao/SmartProxies')
-rw-r--r--TAO/tao/SmartProxies/SmartProxies.rc30
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.cpp16
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.h63
-rw-r--r--TAO/tao/SmartProxies/Smart_Proxies.inl23
-rw-r--r--TAO/tao/SmartProxies/TAO_SmartProxies.pc.in11
-rw-r--r--TAO/tao/SmartProxies/smartproxies_export.h40
6 files changed, 0 insertions, 183 deletions
diff --git a/TAO/tao/SmartProxies/SmartProxies.rc b/TAO/tao/SmartProxies/SmartProxies.rc
deleted file mode 100644
index 2c2665118ef..00000000000
--- a/TAO/tao/SmartProxies/SmartProxies.rc
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "..\Version.h"
-
-1 VERSIONINFO
- FILEVERSION TAO_MAJOR_VERSION,TAO_MINOR_VERSION,TAO_BETA_VERSION,0
- PRODUCTVERSION TAO_MAJOR_VERSION,TAO_MINOR_VERSION,TAO_BETA_VERSION,0
- FILEFLAGSMASK 0x3fL
- FILEFLAGS 0x0L
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040904B0"
- BEGIN
- VALUE "FileDescription", "SmartProxies\0"
- VALUE "FileVersion", TAO_VERSION "\0"
- VALUE "InternalName", "TAO_SmartProxiesDLL\0"
- VALUE "LegalCopyright", "\0"
- VALUE "LegalTrademarks", "\0"
- VALUE "OriginalFilename", "TAO_SmartProxies.DLL\0"
- VALUE "ProductName", "TAO\0"
- VALUE "ProductVersion", TAO_VERSION "\0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x409, 1200
- END
-END
diff --git a/TAO/tao/SmartProxies/Smart_Proxies.cpp b/TAO/tao/SmartProxies/Smart_Proxies.cpp
deleted file mode 100644
index 10707265d59..00000000000
--- a/TAO/tao/SmartProxies/Smart_Proxies.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-// $Id$
-
-#include "tao/SmartProxies/Smart_Proxies.h"
-
-ACE_RCSID(SmartProxies, Smart_Proxies, "$Id$")
-
-#if !defined (__ACE_INLINE__)
-#include "tao/SmartProxies/Smart_Proxies.inl"
-#endif /* defined INLINE */
-
-// Add this line to please the AIX linker, otherwise it complains
-// "ld: 0711-244 ERROR: No csects or exported symbols have been saved."
-
-#if defined (ACE_NDEBUG) && defined (AIX)
-int the_bogus_value_to_please_linker_to_export_symbol;
-#endif
diff --git a/TAO/tao/SmartProxies/Smart_Proxies.h b/TAO/tao/SmartProxies/Smart_Proxies.h
deleted file mode 100644
index 204702f7ec9..00000000000
--- a/TAO/tao/SmartProxies/Smart_Proxies.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file Smart_Proxies.h
- *
- * $Id$
- *
- * This file contains a base class for the generated smart proxy classes
- * It's purpose is to hold the pointer to the real proxy
- *
- * @author Brian Wallis <brian.wallis@ot.com.au>
- */
-//=============================================================================
-
-#ifndef TAO_SMARTPROXIES_H
-#define TAO_SMARTPROXIES_H
-#include /**/ "ace/pre.h"
-
-#include "tao/SmartProxies/smartproxies_export.h"
-#include "tao/Object.h"
-#include "tao/TAO_Singleton.h"
-#include "tao/LocalObject.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-/**
- * @class TAO_Smart_Proxy_Base
- *
- * @brief A base class for all TAO_IDL generated smart proxy base classes.
- *
- * Contains the _var pointer to the real proxy.
- */
-class TAO_SmartProxies_Export TAO_Smart_Proxy_Base
- : public TAO_Local_RefCounted_Object
-{
-public:
- /// Destructor
- virtual ~TAO_Smart_Proxy_Base (void);
-
-protected:
- /// Constructor.
- TAO_Smart_Proxy_Base (void);
-
- /// Constructor.
- TAO_Smart_Proxy_Base (CORBA::Object_ptr proxy);
-
- /// The proxy to which remote/collocated calls are made.
- CORBA::Object_var base_proxy_;
-};
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#if defined (__ACE_INLINE__)
-#include "tao/SmartProxies/Smart_Proxies.inl"
-#endif /* defined INLINE */
-
-#include /**/ "ace/post.h"
-#endif /* TAO_SMARTPROXIES_H */
diff --git a/TAO/tao/SmartProxies/Smart_Proxies.inl b/TAO/tao/SmartProxies/Smart_Proxies.inl
deleted file mode 100644
index 232cacd0f34..00000000000
--- a/TAO/tao/SmartProxies/Smart_Proxies.inl
+++ /dev/null
@@ -1,23 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_INLINE
-TAO_Smart_Proxy_Base::TAO_Smart_Proxy_Base (void)
-{
-}
-
-ACE_INLINE
-TAO_Smart_Proxy_Base::TAO_Smart_Proxy_Base (CORBA::Object_ptr proxy)
- : base_proxy_(proxy)
-{
-}
-
-ACE_INLINE
-TAO_Smart_Proxy_Base::~TAO_Smart_Proxy_Base (void)
-{
-}
-
-TAO_END_VERSIONED_NAMESPACE_DECL
diff --git a/TAO/tao/SmartProxies/TAO_SmartProxies.pc.in b/TAO/tao/SmartProxies/TAO_SmartProxies.pc.in
deleted file mode 100644
index 59c34f50735..00000000000
--- a/TAO/tao/SmartProxies/TAO_SmartProxies.pc.in
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: TAO_SmartProxies
-Description: TAO Smart Proxies Library
-Requires: TAO
-Version: @VERSION@
-Libs: -L${libdir} -lTAO_SmartProxies
-Cflags: -I${includedir}
diff --git a/TAO/tao/SmartProxies/smartproxies_export.h b/TAO/tao/SmartProxies/smartproxies_export.h
deleted file mode 100644
index 62fb3430f21..00000000000
--- a/TAO/tao/SmartProxies/smartproxies_export.h
+++ /dev/null
@@ -1,40 +0,0 @@
-
-// -*- C++ -*-
-// $Id$
-// Definition for Win32 Export directives.
-// This file is generated automatically by generate_export_file.pl
-// ------------------------------
-#ifndef TAO_SMARTPROXIES_EXPORT_H
-#define TAO_SMARTPROXIES_EXPORT_H
-
-#include "ace/config-all.h"
-
-#if defined (TAO_AS_STATIC_LIBS)
-# if !defined (TAO_SMARTPROXIES_HAS_DLL)
-# define TAO_SMARTPROXIES_HAS_DLL 0
-# endif /* ! TAO_SMARTPROXIES_HAS_DLL */
-#else
-# if !defined (TAO_SMARTPROXIES_HAS_DLL)
-# define TAO_SMARTPROXIES_HAS_DLL 1
-# endif /* ! TAO_SMARTPROXIES_HAS_DLL */
-#endif
-
-#if defined (TAO_SMARTPROXIES_HAS_DLL) && (TAO_SMARTPROXIES_HAS_DLL == 1)
-# if defined (TAO_SMARTPROXIES_BUILD_DLL)
-# define TAO_SmartProxies_Export ACE_Proper_Export_Flag
-# define TAO_SMARTPROXIES_SINGLETON_DECLARATION(T) ACE_EXPORT_SINGLETON_DECLARATION (T)
-# define TAO_SMARTPROXIES_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_EXPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
-# else /* TAO_SMARTPROXIES_BUILD_DLL */
-# define TAO_SmartProxies_Export ACE_Proper_Import_Flag
-# define TAO_SMARTPROXIES_SINGLETON_DECLARATION(T) ACE_IMPORT_SINGLETON_DECLARATION (T)
-# define TAO_SMARTPROXIES_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_IMPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
-# endif /* TAO_SMARTPROXIES_BUILD_DLL */
-#else /* TAO_SMARTPROXIES_HAS_DLL == 1 */
-# define TAO_SmartProxies_Export
-# define TAO_SMARTPROXIES_SINGLETON_DECLARATION(T)
-# define TAO_SMARTPROXIES_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
-#endif /* TAO_SMARTPROXIES_HAS_DLL == 1 */
-
-#endif /* TAO_SMARTPROXIES_EXPORT_H */
-
-// End of auto generated file.