Boost logo

Boost-Commit :

From: mconsoni_at_[hidden]
Date: 2007-06-25 19:44:11


Author: mconsoni
Date: 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
New Revision: 7151
URL: http://svn.boost.org/trac/boost/changeset/7151

Log:

- Added two or three lines to each file describing its contents (according Boost Library Requirements).

Text files modified:
   sandbox/boost/extension/convenience.hpp | 6 +++++-
   sandbox/boost/extension/counted_factory.hpp | 15 ++++++++++-----
   sandbox/boost/extension/counted_factory_map.hpp | 6 +++++-
   sandbox/boost/extension/extension.hpp | 6 +++++-
   sandbox/boost/extension/factory.hpp | 15 ++++++++++-----
   sandbox/boost/extension/factory_map.hpp | 6 +++++-
   sandbox/boost/extension/filesystem.hpp | 6 +++++-
   sandbox/boost/extension/functor.hpp | 15 ++++++++++-----
   sandbox/boost/extension/impl/library_impl.hpp | 6 +++++-
   sandbox/boost/extension/impl/typeinfo.hpp | 11 +++++++++++
   sandbox/boost/extension/registry.hpp | 15 ++++++++++-----
   sandbox/boost/extension/shared_library.hpp | 6 +++++-
   sandbox/boost/extension/zone.hpp | 6 +++++-
   13 files changed, 91 insertions(+), 28 deletions(-)

Modified: sandbox/boost/extension/convenience.hpp
==============================================================================
--- sandbox/boost/extension/convenience.hpp (original)
+++ sandbox/boost/extension/convenience.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / convenience functions:
+ * for now only one to load a library and register it in the factory map.
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/counted_factory.hpp
==============================================================================
--- sandbox/boost/extension/counted_factory.hpp (original)
+++ sandbox/boost/extension/counted_factory.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,8 +1,13 @@
-/* (C) Copyright Jeremy Pack 2007
-* Distributed under the Boost Software License, Version 1.0. (See
-* accompanying file LICENSE_1_0.txt or copy at
-* http://www.boost.org/LICENSE_1_0.txt)
-*/
+/*
+ * Boost.Extension / counted factory:
+ * factory to register the implementations and create them (with a reference count)
+ *
+ * (C) Copyright Jeremy Pack 2007
+ * Distributed under the Boost Software License, Version 1.0. (See
+ * accompanying file LICENSE_1_0.txt or copy at
+ * http://www.boost.org/LICENSE_1_0.txt)
+ */
+
 #ifndef BOOST_EXTENSION_COUNTED_FACTORY_HPP
 #define BOOST_EXTENSION_COUNTED_FACTORY_HPP
 #include <string>

Modified: sandbox/boost/extension/counted_factory_map.hpp
==============================================================================
--- sandbox/boost/extension/counted_factory_map.hpp (original)
+++ sandbox/boost/extension/counted_factory_map.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / counted factory map:
+ * map of factories (for the implementations) with a reference count
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/extension.hpp
==============================================================================
--- sandbox/boost/extension/extension.hpp (original)
+++ sandbox/boost/extension/extension.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / main header:
+ * main header for extensions
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/factory.hpp
==============================================================================
--- sandbox/boost/extension/factory.hpp (original)
+++ sandbox/boost/extension/factory.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,8 +1,13 @@
-/* (C) Copyright Jeremy Pack 2007
-* Distributed under the Boost Software License, Version 1.0. (See
-* accompanying file LICENSE_1_0.txt or copy at
-* http://www.boost.org/LICENSE_1_0.txt)
-*/
+/*
+ * Boost.Extension / factory:
+ * factory to register the implementations and create them
+ *
+ * (C) Copyright Jeremy Pack 2007
+ * Distributed under the Boost Software License, Version 1.0. (See
+ * accompanying file LICENSE_1_0.txt or copy at
+ * http://www.boost.org/LICENSE_1_0.txt)
+ */
+
 #ifndef BOOST_EXTENSION_FACTORY_HPP
 #define BOOST_EXTENSION_FACTORY_HPP
 #include <string>

Modified: sandbox/boost/extension/factory_map.hpp
==============================================================================
--- sandbox/boost/extension/factory_map.hpp (original)
+++ sandbox/boost/extension/factory_map.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / factory map:
+ * map of factories (for the implementations)
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/filesystem.hpp
==============================================================================
--- sandbox/boost/extension/filesystem.hpp (original)
+++ sandbox/boost/extension/filesystem.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / filesystem functions:
+ * functions to navigate folders/directories and get the libraries
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/functor.hpp
==============================================================================
--- sandbox/boost/extension/functor.hpp (original)
+++ sandbox/boost/extension/functor.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,8 +1,13 @@
-/* (C) Copyright Jeremy Pack 2007
-* Distributed under the Boost Software License, Version 1.0. (See
-* accompanying file LICENSE_1_0.txt or copy at
-* http://www.boost.org/LICENSE_1_0.txt)
-*/
+/*
+ * Boost.Extension / functor:
+ * functor used as the exported function of the libraries (the one that
+ * registers the implementations at library loading time)
+ *
+ * (C) Copyright Jeremy Pack 2007
+ * Distributed under the Boost Software License, Version 1.0. (See
+ * accompanying file LICENSE_1_0.txt or copy at
+ * http://www.boost.org/LICENSE_1_0.txt)
+ */
 
 #ifndef BOOST_EXTENSION_FUNCTOR_HPP
 #define BOOST_EXTENSION_FUNCTOR_HPP

Modified: sandbox/boost/extension/impl/library_impl.hpp
==============================================================================
--- sandbox/boost/extension/impl/library_impl.hpp (original)
+++ sandbox/boost/extension/impl/library_impl.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / libraries management:
+ * low-level platform specific dynamic library management
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/impl/typeinfo.hpp
==============================================================================
--- sandbox/boost/extension/impl/typeinfo.hpp (original)
+++ sandbox/boost/extension/impl/typeinfo.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,3 +1,14 @@
+/*
+ * Boost.Extension / typeinfo:
+ * implementations name management with RTTI
+ *
+ * (C) Copyright Jeremy Pack 2007
+ * Distributed under the Boost Software License, Version 1.0. (See
+ * accompanying file LICENSE_1_0.txt or copy at
+ * http://www.boost.org/LICENSE_1_0.txt)
+ */
+
+
 #ifndef BOOST_EXTENSION_TYPEINFO_HPP
 #define BOOST_EXTENSION_TYPEINFO_HPP
 namespace boost{namespace extensions{

Modified: sandbox/boost/extension/registry.hpp
==============================================================================
--- sandbox/boost/extension/registry.hpp (original)
+++ sandbox/boost/extension/registry.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,8 +1,13 @@
-/* (C) Copyright Jeremy Pack 2007
-* Distributed under the Boost Software License, Version 1.0. (See
-* accompanying file LICENSE_1_0.txt or copy at
-* http://www.boost.org/LICENSE_1_0.txt)
-*/
+/*
+ * Boost.Extension / registry:
+ * library registration (automates some operations)
+ *
+ * (C) Copyright Jeremy Pack 2007
+ * Distributed under the Boost Software License, Version 1.0. (See
+ * accompanying file LICENSE_1_0.txt or copy at
+ * http://www.boost.org/LICENSE_1_0.txt)
+ */
+
 #ifndef BOOST_EXTENSION_REGISTRY_HPP
 #define BOOST_EXTENSION_REGISTRY_HPP
 #include <map>

Modified: sandbox/boost/extension/shared_library.hpp
==============================================================================
--- sandbox/boost/extension/shared_library.hpp (original)
+++ sandbox/boost/extension/shared_library.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / shared_library:
+ * functions for shared_library loading
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)

Modified: sandbox/boost/extension/zone.hpp
==============================================================================
--- sandbox/boost/extension/zone.hpp (original)
+++ sandbox/boost/extension/zone.hpp 2007-06-25 19:44:09 EDT (Mon, 25 Jun 2007)
@@ -1,4 +1,8 @@
-/* (C) Copyright Jeremy Pack 2007
+/*
+ * Boost.Extension / zone:
+ * ???
+ *
+ * (C) Copyright Jeremy Pack 2007
  * Distributed under the Boost Software License, Version 1.0. (See
  * accompanying file LICENSE_1_0.txt or copy at
  * http://www.boost.org/LICENSE_1_0.txt)


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk