summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-11-24 19:44:45 +0000
committerelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-11-24 19:44:45 +0000
commit578a8934e05e71f614feca3d166e278feb252628 (patch)
treec8812d484b79cd4c73bcfdfcedc42197779495fe
parent219d76b10effe7c7e9c6745d9f63efd9b1b98968 (diff)
downloadATCD-578a8934e05e71f614feca3d166e278feb252628.tar.gz
ChangeLogTag: Wed Nov 24 13:44:00 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp1
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.h2
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp1
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.h2
5 files changed, 13 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8709c8b7bde..2619b63630c 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Wed Nov 24 13:44:00 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.h:
+ * orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp:
+ * orbsvcs/orbsvcs/Notify/XML_Topology_Factory.h:
+ * orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp:
+
+ Moved the ACE_FACTORY_DECLARE out of the .cpp into the .h.
+
Wed Nov 24 13:16:59 2004 Chad Elliott <elliott_c@ociweb.com>
* performance-tests/Protocols/sender.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp b/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp
index 0494a409311..a4a5079a4f9 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp
@@ -223,7 +223,6 @@ Standard_Event_Persistence_Factory::root()
return this->root_;
}
-ACE_FACTORY_DECLARE (TAO_Notify_Serv, Standard_Event_Persistence)
ACE_FACTORY_DEFINE (TAO_Notify_Serv, Standard_Event_Persistence)
}
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.h b/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.h
index ae450d415da..e736cc4d9cb 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.h
@@ -124,5 +124,7 @@ namespace TAO_Notify
}
+ACE_FACTORY_DECLARE (TAO_Notify_Serv, Standard_Event_Persistence)
+
#include /**/ "ace/post.h"
#endif /* STANDARD_EVENT_PERSISTENCE_H */
diff --git a/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp b/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp
index e654afc71f3..4e4e8faa3c9 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.cpp
@@ -145,7 +145,6 @@ namespace TAO_Notify
return 0;
}
-ACE_FACTORY_DECLARE (TAO_Notify_Persist, XML_Topology_Factory)
ACE_FACTORY_DEFINE (TAO_Notify_Persist, XML_Topology_Factory)
diff --git a/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.h b/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.h
index 8623ca53a9c..2a725efd03b 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/XML_Topology_Factory.h
@@ -73,5 +73,7 @@ namespace TAO_Notify
} // namespace TAO_Notify
+ACE_FACTORY_DECLARE (TAO_Notify_Persist, XML_Topology_Factory)
+
#include /**/ "ace/post.h"
#endif /* XML_TOPOLOGY_FACTORY_H */