summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Smart_Proxies/dtor/Smart_Proxy_Impl.h
blob: 8161ff23d2dc2add14e4cdb0c3857ee4f3f9a1da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
};