summaryrefslogtreecommitdiff
path: root/TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h')
-rw-r--r--TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h b/TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h
new file mode 100644
index 00000000000..8161ff23d2d
--- /dev/null
+++ b/TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h
@@ -0,0 +1,18 @@
+//$Id$
+
+#include "testC.h"
+
+extern bool dtor_called;
+
+class Test_Smart_Proxy: public virtual TAO_Test_Smart_Proxy_Base
+{
+public:
+ Test_Smart_Proxy (Test_ptr proxy);
+ virtual ~Test_Smart_Proxy ();
+};
+
+class Test_Smart_Factory: public TAO_Test_Default_Proxy_Factory
+{
+public:
+ virtual Test_ptr create_proxy (Test_ptr proxy);
+};