summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Callback_Quoter/notifier.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/examples/Callback_Quoter/notifier.cpp')
-rw-r--r--ACE/TAO/examples/Callback_Quoter/notifier.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/ACE/TAO/examples/Callback_Quoter/notifier.cpp b/ACE/TAO/examples/Callback_Quoter/notifier.cpp
new file mode 100644
index 00000000000..0ad0f34bf7a
--- /dev/null
+++ b/ACE/TAO/examples/Callback_Quoter/notifier.cpp
@@ -0,0 +1,40 @@
+// $Id$
+
+#include "Notifier_Input_Handler.h"
+
+ACE_RCSID(notifier, Callback_Quoter, "$Id$")
+
+// This is the main driver program for the Callback Quoter Notifier.
+
+int
+ACE_TMAIN(int argc, ACE_TCHAR *argv[])
+{
+ Notifier_Input_Handler notifier;
+
+ ACE_DEBUG ((LM_DEBUG,
+ "\n\tNotifier\n\n"));
+
+ try
+ {
+ int rc = notifier.init (argc, argv);
+
+ if (rc == -1)
+ return 1;
+ else
+ {
+ notifier.run ();
+ }
+ }
+ catch (const CORBA::SystemException& sysex)
+ {
+ sysex._tao_print_exception ("System Exception");
+ return -1;
+ }
+ catch (const CORBA::UserException& userex)
+ {
+ userex._tao_print_exception ("User Exception");
+ return -1;
+ }
+
+ return 0;
+}