/* -*- C++ -*- ------------------------------------------------------------ Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/ The Configurable Math Library (CML) is distributed under the terms of the Boost Software License, v1.0 (see cml/LICENSE for details). *-----------------------------------------------------------------------*/ /** @file * @brief * * Forward declarations, useful to avoid including lots of headers. * * @sa cml/et/array_promotions.h */ #ifndef core_fwd_h #define core_fwd_h namespace cml { /* cml/core/fixed_1D.h */ template class fixed_1D; /* cml/core/fixed_2D.h */ template class fixed_2D; /* cml/core/dynamic_1D.h */ template class dynamic_1D; /* cml/core/dynamic_2D.h */ template class dynamic_2D; /* cml/core/external_1D.h */ template class external_1D; /* cml/core/external_2D.h */ template class external_2D; /* cml/fixed.h */ template struct fixed; /* cml/dynamic.h */ template struct dynamic; /* cml/external.h */ template struct external; /* cml/vector.h */ template class vector; /* cml/matrix.h */ template class matrix; /* cml/quaternion.h */ template class quaternion; } // namespace cml #endif // ------------------------------------------------------------------------- // vim:ft=cpp