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.h39
1 files changed, 0 insertions, 39 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 35930cf52cf..00000000000
--- a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// $Id$
-//
-#ifndef SMART_PROXY_IMPL_H
-#define SMART_PROXY_IMPL_H
-
-#include "DiamondC.h"
-#include "stub_export.h"
-
-class MY_Stub_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
- ACE_ENV_ARG_DECL_WITH_DEFAULTS);
-
- // This method will create the smart_proxy.
-};
-
-
-class MY_Stub_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 (
- ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
-
- ACE_THROW_SPEC ((
- CORBA::SystemException
- ));
- // Smartify the method call!
-
- // Dont need to add any extra functionality into shutdown()
- // hence neednt define it.
-};
-#endif /*SMART_PROXY_IMPL_H*/