summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h')
-rw-r--r--TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h b/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h
deleted file mode 100644
index cfef0a4876e..00000000000
--- a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// $Id$
-
-#define ACE_BUILD_SVC_DLL
-
-#include "DiamondC.h"
-
-class ACE_Svc_Export Smart_Diamond_Top_Factory : public virtual Diamond::TAO_Diamond_Top_Default_Proxy_Factory
-{
- public:
-
- Smart_Diamond_Top_Factory (void);
-
- virtual Diamond::Top_ptr create_proxy (Diamond::Top_ptr proxy,
- CORBA::Environment &env =
- TAO_default_environment ()
- );
- // This method will create the smart_proxy.
-};
-
-
-class ACE_Svc_Export Smart_Diamond_Top_Proxy : public virtual Diamond::TAO_Diamond_Top_Smart_Proxy_Base
-{
- public:
-
- Smart_Diamond_Top_Proxy (Diamond::Top_ptr proxy);
-
- virtual char * shape (
- CORBA::Environment &ACE_TRY_ENV =
- TAO_default_environment ()
- )
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ));
- // Smartify the method call!
-
- // Dont need to add any extra functionality into shutdown()
- // hence neednt define it.
-};