summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/Security/SecurityUnawareApp/Messenger_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples/Security/SecurityUnawareApp/Messenger_i.cpp')
-rw-r--r--TAO/DevGuideExamples/Security/SecurityUnawareApp/Messenger_i.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/TAO/DevGuideExamples/Security/SecurityUnawareApp/Messenger_i.cpp b/TAO/DevGuideExamples/Security/SecurityUnawareApp/Messenger_i.cpp
deleted file mode 100644
index 809cfcc584f..00000000000
--- a/TAO/DevGuideExamples/Security/SecurityUnawareApp/Messenger_i.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- C++ -*- $Id$ */
-
-// ****** Code generated by the The ACE ORB (TAO) IDL Compiler *******
-// TAO and the TAO IDL Compiler have been developed by the Center for
-// Distributed Object Computing at Washington University, St. Louis.
-//
-// Information about TAO is available at:
-// http://www.cs.wustl.edu/~schmidt/TAO.html
-
-#include "Messenger_i.h"
-#include <iostream>
-// Implementation skeleton constructor
-Messenger_i::Messenger_i (void)
- {
- }
-
-// Implementation skeleton destructor
-Messenger_i::~Messenger_i (void)
- {
- }
-
-CORBA::Boolean Messenger_i::send_message (
- const char * user_name,
- const char * subject,
- char *& message
- )
- {
- std::cout << "Message from: " << user_name << std::endl;
- std::cout << "Subject: " << subject << std::endl;
- std::cout << "Message: " << message << std::endl;
- return 1;
- }