summaryrefslogtreecommitdiff
path: root/TAO/examples/mfc/w32_test_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/mfc/w32_test_impl.cpp')
-rw-r--r--TAO/examples/mfc/w32_test_impl.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/TAO/examples/mfc/w32_test_impl.cpp b/TAO/examples/mfc/w32_test_impl.cpp
deleted file mode 100644
index 5f63041cc98..00000000000
--- a/TAO/examples/mfc/w32_test_impl.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// $Id$
-
-#include "w32_test_impl.h"
-
-W32_Test_Impl::~W32_Test_Impl (void)
-{
-}
-
-W32_Test_Impl::W32_Test_Impl (void)
-{
- blabla = 1;
-}
-
-
-char *
-W32_Test_Impl::getresponse (CORBA::Long respnr)
-{
- char *myreturn;
-
- switch (respnr)
- {
- case 1:
- myreturn = CORBA::string_dup ("Parameter 1");
- break;
- case 2:
- myreturn = CORBA::string_dup ("Parameter 2");
- break;
- default:
- myreturn = CORBA::string_dup ("Parameter unknown!");
- break;
- }
-
- return myreturn;
-}