00001 /* -*- C++ -*- ------------------------------------------------------------ 00002 00003 Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/ 00004 00005 The Configurable Math Library (CML) is distributed under the terms of the 00006 Boost Software License, v1.0 (see cml/LICENSE for details). 00007 00008 *-----------------------------------------------------------------------*/ 00013 #ifndef external_h 00014 #define external_h 00015 00016 namespace cml { 00017 00027 template<int Dim1 = -1, int Dim2 = -1> struct external { 00028 00033 template<int D> struct rebind { typedef external<D> other; }; 00034 }; 00035 00036 } // namespace cml 00037 00038 #endif 00039 00040 // ------------------------------------------------------------------------- 00041 // vim:ft=cpp