Author: tabish
Date: Thu May 29 16:58:16 2008
New Revision: 661534
URL: http://svn.apache.org/viewvc?rev=661534&view=rev
Log:
cleaning up for decaf release
Modified:
activemq/activemq-cpp/trunk/src/main/decaf/util/Set.h
Modified: activemq/activemq-cpp/trunk/src/main/decaf/util/Set.h
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/decaf/util/Set.h?rev=661534&r1=661533&r2=661534&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/decaf/util/Set.h (original)
+++ activemq/activemq-cpp/trunk/src/main/decaf/util/Set.h Thu May 29 16:58:16
2008
@@ -29,12 +29,11 @@
namespace util{
/**
- * Map template that wraps around a std::map to provide
+ * Set template that wraps around a std::set to provide
* a more user-friendly interface and to provide common
- * functions that do not exist in std::map.
+ * functions that do not exist in std::set.
*/
- template <typename E> class Set : public util::concurrent::Synchronizable
- {
+ template <typename E> class Set : public util::concurrent::Synchronizable {
private:
std::set<E> values;
@@ -248,6 +247,7 @@
virtual void notifyAll() throw( lang::Exception ) {
mutex.notifyAll();
}
+
};
}}