summaryrefslogtreecommitdiff
path: root/ACE/examples/Web_Crawler/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Web_Crawler/main.cpp')
-rw-r--r--ACE/examples/Web_Crawler/main.cpp39
1 files changed, 18 insertions, 21 deletions
diff --git a/ACE/examples/Web_Crawler/main.cpp b/ACE/examples/Web_Crawler/main.cpp
index 1735f811b78..6509858bea6 100644
--- a/ACE/examples/Web_Crawler/main.cpp
+++ b/ACE/examples/Web_Crawler/main.cpp
@@ -1,28 +1,25 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// examples/Web_Crawler
-//
-// = FILENAME
-// main.cpp
-//
-// = DESCRIPTION
-// This program implements a Web crawler that can be configured to
-// apply various strategies to URLs that it visits.
-//
-// = AUTHOR
-// Doug Schmidt <schmidt@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file main.cpp
+ *
+ * $Id$
+ *
+ * This program implements a Web crawler that can be configured to
+ * apply various strategies to URLs that it visits.
+ *
+ *
+ * @author Doug Schmidt <schmidt@cs.wustl.edu>
+ */
+//=============================================================================
+
#include "ace/OS_main.h"
#include "ace/Signal.h"
#include "Web_Crawler.h"
#include "Options.h"
-ACE_RCSID(Web_Crawler, main, "$Id$")
+
void sig_handler (int)
{
@@ -31,14 +28,14 @@ void sig_handler (int)
ACE_OS::abort ();
}
-int
+int
ACE_TMAIN (int argc, ACE_TCHAR *argv[])
{
#if !defined (ACE_HAS_WINCE)
ACE_Sig_Action sa ((ACE_SignalHandler) sig_handler, SIGFPE);
#endif
Web_Crawler crawler;
-
+
if (crawler.open (argc, argv) == -1)
return 1;
else if (crawler.run () == -1)