Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72283 - in sandbox/bloom_filter/trunk/boost/bloom_filter: . detail
From: cpp.cabrera_at_[hidden]
Date: 2011-05-30 11:02:12


Author: alejandro
Date: 2011-05-30 11:02:10 EDT (Mon, 30 May 2011)
New Revision: 72283
URL: http://svn.boost.org/trac/boost/changeset/72283

Log:
Added Boost license to all header files. Added proper hash guard prefix to all header files.
Text files modified:
   sandbox/bloom_filter/trunk/boost/bloom_filter/bloom.hpp | 15 +++++++++++++--
   sandbox/bloom_filter/trunk/boost/bloom_filter/detail/apply_hash.hpp | 15 +++++++++++++--
   sandbox/bloom_filter/trunk/boost/bloom_filter/hash.hpp | 15 +++++++++++++--
   3 files changed, 39 insertions(+), 6 deletions(-)

Modified: sandbox/bloom_filter/trunk/boost/bloom_filter/bloom.hpp
==============================================================================
--- sandbox/bloom_filter/trunk/boost/bloom_filter/bloom.hpp (original)
+++ sandbox/bloom_filter/trunk/boost/bloom_filter/bloom.hpp 2011-05-30 11:02:10 EDT (Mon, 30 May 2011)
@@ -1,5 +1,16 @@
-#ifndef _BLOOM_HPP
-#define _BLOOM_HPP 1
+//////////////////////////////////////////////////////////////////////////////
+//
+// (C) Copyright Alejandro Cabrera 2011.
+// 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)
+//
+// See http://www.boost.org/libs/bloom_filter for documentation.
+//
+//////////////////////////////////////////////////////////////////////////////
+#ifndef BOOST_BLOOM_FILTER_BLOOM_HPP
+#define BOOST_BLOOM_FILTER_BLOOM_HPP 1
 /**
  * \author Alejandro Cabrera
  * \brief A generic Bloom filter providing compile-time unrolling

Modified: sandbox/bloom_filter/trunk/boost/bloom_filter/detail/apply_hash.hpp
==============================================================================
--- sandbox/bloom_filter/trunk/boost/bloom_filter/detail/apply_hash.hpp (original)
+++ sandbox/bloom_filter/trunk/boost/bloom_filter/detail/apply_hash.hpp 2011-05-30 11:02:10 EDT (Mon, 30 May 2011)
@@ -1,5 +1,16 @@
-#ifndef __APPLY_HASH_HPP
-#define __APPLY_HASH_HPP
+//////////////////////////////////////////////////////////////////////////////
+//
+// (C) Copyright Alejandro Cabrera 2011.
+// 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)
+//
+// See http://www.boost.org/libs/bloom_filter for documentation.
+//
+//////////////////////////////////////////////////////////////////////////////
+#ifndef BOOST_BLOOM_FILTER_APPLY_HASH_HPP
+#define BOOST_BLOOM_FILTER_APPLY_HASH_HPP
 
 #include <boost/mpl/at.hpp>
 

Modified: sandbox/bloom_filter/trunk/boost/bloom_filter/hash.hpp
==============================================================================
--- sandbox/bloom_filter/trunk/boost/bloom_filter/hash.hpp (original)
+++ sandbox/bloom_filter/trunk/boost/bloom_filter/hash.hpp 2011-05-30 11:02:10 EDT (Mon, 30 May 2011)
@@ -1,5 +1,16 @@
-#ifndef _HASH_HPP_
-#define _HASH_HPP_ 1
+//////////////////////////////////////////////////////////////////////////////
+//
+// (C) Copyright Alejandro Cabrera 2011.
+// 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)
+//
+// See http://www.boost.org/libs/bloom_filter for documentation.
+//
+//////////////////////////////////////////////////////////////////////////////
+#ifndef BOOST_BLOOM_FILTER_HASH_HPP_
+#define BOOST_BLOOM_FILTER_HASH_HPP_ 1
 /**
  * \author Alejandro Cabrera
  * \brief An alternative implentation of murmurhash3 for users


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