summaryrefslogtreecommitdiff
path: root/TAO/examples/mfc/w32_test_impl.h
blob: 386c775b1731cabab1572abd6e6be976171e945c (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 ();

  W32_Test_Impl ();

  char *getresponse (CORBA::Long respnr);

private:
  int blabla;
};

#endif