|
From: Steven W. <ste...@us...> - 2007-04-15 01:40:19
|
Update of /cvsroot/boost-sandbox/boost-sandbox/libs/units/test In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29492/boost-sandbox/libs/units/test Added Files: test_base_dimension.cpp Log Message: make sure that we can use base_dimension reliably --- NEW FILE: test_base_dimension.cpp --- // mcs::units - A C++ library for zero-overhead dimensional analysis and // unit/quantity manipulation and conversion // // Copyright (C) 2003-2007 Matthias Christian Schabel // Copyright (C) 2007 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) /** \file \brief test_base_dimension.cpp \detailed Test base_dimension class. Output: @verbatim @endverbatim **/ #include <boost/units/base_dimension.hpp> struct dimension : boost::units::base_dimension<dimension, 1> { typedef boost::units::base_dimension<dimension, 1> base; }; int main() { } |