/* Example programs from the book Scientific and Engineering Programming in C++: An Introduction with Advanced Techniques and Examples, Addison-Wesley, 1994. (c) COPYRIGHT INTERNATIONAL BUSINESS MACHINES CORPORATION 1994. ALL RIGHTS RESERVED. See README file for further details. */ template const BritishConstants::Mass BritishConstants::slug = 14.59; template const BritishConstants::Length BritishConstants::foot = .3048; template const BritishConstants::Length BritishConstants::inch = .0254; template const BritishConstants::Force BritishConstants::pound = 4.448; template const BritishConstants::Acceleration BritishConstants::ft_per_sec2 = .3048;