summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-02 17:35:08 +0000
committeroci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-02 17:35:08 +0000
commit131a4d5b4f45a4162e9fd4f6b729fbf163f758c0 (patch)
tree5fdcd76666a3816094d871cb5245677350feb004
parentf06e0261433baa496c68ebef845177aa3b11d7d4 (diff)
downloadATCD-131a4d5b4f45a4162e9fd4f6b729fbf163f758c0.tar.gz
Johnny Willemsens changes
-rw-r--r--ChangeLog17
-rw-r--r--examples/Web_Crawler/Command_Processor.h2
-rw-r--r--examples/Web_Crawler/HTTP_URL.h2
-rw-r--r--examples/Web_Crawler/Iterators.h2
-rw-r--r--examples/Web_Crawler/Mem_Map_Stream.h2
-rw-r--r--examples/Web_Crawler/Options.h2
-rw-r--r--examples/Web_Crawler/URL.h2
-rw-r--r--examples/Web_Crawler/URL_Addr.h2
-rw-r--r--examples/Web_Crawler/URL_Status.h2
-rw-r--r--examples/Web_Crawler/URL_Visitor.h2
-rw-r--r--examples/Web_Crawler/URL_Visitor_Factory.h2
-rw-r--r--examples/Web_Crawler/Web_Crawler.h2
12 files changed, 28 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f46c36bbf4..da917295e41 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+Tue Sep 2 17:25:24 UTC 2003 Trevor Fields <fields_t@ociweb.com>
+
+ * examples/Web_Crawler/Command_Processor.h
+ * examples/Web_Crawler/HTTP_URL.h
+ * examples/Web_Crawler/Iterators.h
+ * examples/Web_Crawler/Mem_Map_Stream.h
+ * examples/Web_Crawler/Options.h
+ * examples/Web_Crawler/URL.h
+ * examples/Web_Crawler/URL_Addr.h
+ * examples/Web_Crawler/URL_Status.h
+ * examples/Web_Crawler/URL_Visitor.h
+ * examples/Web_Crawler/URL_Visitor_Factory.h
+ * examples/Web_Crawler/Web_Crawler.h
+
+ Applied Johnny Willemsen's changes. These are fixes for the
+ #if !defined (ACE_LACKS_PRAGMA_ONCE) lines
+
Tue Sep 2 07:02:19 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/README:
diff --git a/examples/Web_Crawler/Command_Processor.h b/examples/Web_Crawler/Command_Processor.h
index f0cdf813051..742a316804c 100644
--- a/examples/Web_Crawler/Command_Processor.h
+++ b/examples/Web_Crawler/Command_Processor.h
@@ -18,7 +18,7 @@
#define _COMMAND_PROCESSOR_H
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Containers.h"
diff --git a/examples/Web_Crawler/HTTP_URL.h b/examples/Web_Crawler/HTTP_URL.h
index 0df9aa8707f..a49600ca0ca 100644
--- a/examples/Web_Crawler/HTTP_URL.h
+++ b/examples/Web_Crawler/HTTP_URL.h
@@ -22,7 +22,7 @@
#include "Options.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class HTTP_URL : public URL
diff --git a/examples/Web_Crawler/Iterators.h b/examples/Web_Crawler/Iterators.h
index 19a7d6fc7d7..b5d267f7afb 100644
--- a/examples/Web_Crawler/Iterators.h
+++ b/examples/Web_Crawler/Iterators.h
@@ -20,7 +20,7 @@
#include "URL.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class URL_Iterator
diff --git a/examples/Web_Crawler/Mem_Map_Stream.h b/examples/Web_Crawler/Mem_Map_Stream.h
index 4ca0fc8c04a..9e6fed50598 100644
--- a/examples/Web_Crawler/Mem_Map_Stream.h
+++ b/examples/Web_Crawler/Mem_Map_Stream.h
@@ -18,7 +18,7 @@
#define _MEM_MAP_STREAM_H
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/SOCK_Stream.h"
diff --git a/examples/Web_Crawler/Options.h b/examples/Web_Crawler/Options.h
index 48e06f7930c..45b8bfd2f71 100644
--- a/examples/Web_Crawler/Options.h
+++ b/examples/Web_Crawler/Options.h
@@ -21,7 +21,7 @@
#include "ace/Synch.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
// Forward decls.
diff --git a/examples/Web_Crawler/URL.h b/examples/Web_Crawler/URL.h
index 2cfec48a41a..b4bcf2117ed 100644
--- a/examples/Web_Crawler/URL.h
+++ b/examples/Web_Crawler/URL.h
@@ -22,7 +22,7 @@
#include "URL_Status.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
// Forward declaration.
diff --git a/examples/Web_Crawler/URL_Addr.h b/examples/Web_Crawler/URL_Addr.h
index d959da3a439..21066888602 100644
--- a/examples/Web_Crawler/URL_Addr.h
+++ b/examples/Web_Crawler/URL_Addr.h
@@ -20,7 +20,7 @@
#include "ace/INET_Addr.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/ACE.h"
diff --git a/examples/Web_Crawler/URL_Status.h b/examples/Web_Crawler/URL_Status.h
index 305d0cff18b..fc916a4eee5 100644
--- a/examples/Web_Crawler/URL_Status.h
+++ b/examples/Web_Crawler/URL_Status.h
@@ -20,7 +20,7 @@
#include "ace/OS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class URL_Status
diff --git a/examples/Web_Crawler/URL_Visitor.h b/examples/Web_Crawler/URL_Visitor.h
index 4ab405a0319..508eed00bc4 100644
--- a/examples/Web_Crawler/URL_Visitor.h
+++ b/examples/Web_Crawler/URL_Visitor.h
@@ -18,7 +18,7 @@
#define _URL_VISITOR_H
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Strategies_T.h"
diff --git a/examples/Web_Crawler/URL_Visitor_Factory.h b/examples/Web_Crawler/URL_Visitor_Factory.h
index b05d34ba1bd..333fa9f0e66 100644
--- a/examples/Web_Crawler/URL_Visitor_Factory.h
+++ b/examples/Web_Crawler/URL_Visitor_Factory.h
@@ -21,7 +21,7 @@
#include "Command_Processor.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class URL_Visitor_Factory
diff --git a/examples/Web_Crawler/Web_Crawler.h b/examples/Web_Crawler/Web_Crawler.h
index 78acb845102..8245915f548 100644
--- a/examples/Web_Crawler/Web_Crawler.h
+++ b/examples/Web_Crawler/Web_Crawler.h
@@ -21,7 +21,7 @@
#include "HTTP_URL.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#define ACE_LACKS_PRAGMA_ONCE
+#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
// Forward declaration.