Boost logo

Boost-Commit :

From: boost_at_[hidden]
Date: 2008-05-18 21:00:35


Author: matthiasschabel
Date: 2008-05-18 21:00:34 EDT (Sun, 18 May 2008)
New Revision: 45514
URL: http://svn.boost.org/trac/boost/changeset/45514

Log:
remove irrelevant header
Removed:
   sandbox/units/boost/units/systems/detail/non_si_unit.hpp

Deleted: sandbox/units/boost/units/systems/detail/non_si_unit.hpp
==============================================================================
--- sandbox/units/boost/units/systems/detail/non_si_unit.hpp 2008-05-18 21:00:34 EDT (Sun, 18 May 2008)
+++ (empty file)
@@ -1,46 +0,0 @@
-// Boost.Units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2008 Matthias Christian Schabel
-// Copyright (C) 2007-2008 Steven Watanabe
-//
-// 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_UNIT_SYSTEMS_OTHER_NON_SI_UNIT_HPP_INCLUDED
-#define BOOST_UNIT_SYSTEMS_OTHER_NON_SI_UNIT_HPP_INCLUDED
-
-#include <boost/units/conversion.hpp>
-
-//#define BOOST_UNITS_DEFINE_BASE_UNIT_WITH_CONVERSIONS(namespace_, name_, symbol_, factor, unit, id)\
-//namespace boost { \
-//namespace units { \
-//namespace namespace_ { \
-//struct name_ ## _base_unit \
-// : base_unit<name_ ## _base_unit, unit::dimension_type, id - 100> { \
-// static const char* name() { return(#name_); } \
-// static const char* symbol() { return(#symbol_); }; \
-//}; \
-//} \
-//} \
-//} \
-//BOOST_UNITS_DEFINE_CONVERSION_FACTOR(namespace_::name_ ## _base_unit, unit, double, factor); \
-//BOOST_UNITS_DEFAULT_CONVERSION(namespace_::name_ ## _base_unit, unit)
-
-#define BOOST_UNITS_DEFINE_BASE_UNIT_WITH_CONVERSIONS(namespace_, name_, name_string_, symbol_string_, factor, unit, id)\
-namespace boost { \
-namespace units { \
-namespace namespace_ { \
-struct name_ ## _base_unit \
- : base_unit<name_ ## _base_unit, unit::dimension_type, id> { \
- static const char* name() { return(name_string_); } \
- static const char* symbol() { return(symbol_string_); }; \
-}; \
-} \
-} \
-} \
-BOOST_UNITS_DEFINE_CONVERSION_FACTOR(namespace_::name_ ## _base_unit, unit, double, factor); \
-BOOST_UNITS_DEFAULT_CONVERSION(namespace_::name_ ## _base_unit, unit)
-
-#endif


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