summaryrefslogtreecommitdiff
path: root/examples/APG/Naming/EMail.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Naming/EMail.h')
-rw-r--r--examples/APG/Naming/EMail.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/examples/APG/Naming/EMail.h b/examples/APG/Naming/EMail.h
deleted file mode 100644
index fc38913a10a..00000000000
--- a/examples/APG/Naming/EMail.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// $Id$
-
-#ifndef EMAIL_H
-#define EMAIL_H
-
-#include "ace/Log_Msg.h"
-
-class EMail
- {
- public:
- EMail()
- { }
-
- int send (const char *to,
- const char *from,
- const char *subject,
- const char *message)
- {
- ACE_DEBUG ((LM_ERROR, ACE_TEXT ("To:\t%s\n"), to));
- ACE_DEBUG ((LM_ERROR, ACE_TEXT ("From:\t%s\n"), from));
- ACE_DEBUG ((LM_ERROR, ACE_TEXT ("Subject:\t%s\n"), subject));
- ACE_DEBUG ((LM_ERROR, ACE_TEXT ("\n%s\n"), message));
-
- return 0;
- }
- };
-
-#endif /* EMAIL_H */