summaryrefslogtreecommitdiff
path: root/TAO/examples/mfc/w32_test_impl.h
blob: 1022be5cf40b032ff45dea7460da3a72087fe5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef w32_test_impl_h
#define w32_test_impl_h

#include "w32_testS.h"

class W32_Test_Impl : public POA_W32_Test_Interface
{
public:
  ~W32_Test_Impl (void);

  W32_Test_Impl (void);

  char *getresponse (CORBA::Long respnr);

private:
  int blabla;
};

#endif