X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2Fcml%2Fdynamic.h;fp=src%2FMoof%2Fcml%2Fdynamic.h;h=8c942b4edd306e5642c608e0492afd41244393ff;hp=0000000000000000000000000000000000000000;hb=c2321281bf12a7efaedde930422c7ddbc92080d4;hpb=87bc17e55b0c1dc73ecc66df856d3f08fd7a7724 diff --git a/src/Moof/cml/dynamic.h b/src/Moof/cml/dynamic.h new file mode 100644 index 0000000..8c942b4 --- /dev/null +++ b/src/Moof/cml/dynamic.h @@ -0,0 +1,35 @@ +/* -*- 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 + */ + +#ifndef dynamic_h +#define dynamic_h + +#include + +namespace cml { + +/** This is a selector for dynamic 1D and 2D arrays. + * + * The dynamic<> struct has no implementation; it is used only to select a + * 1D or 2D array type as the base class of a vector or matrix. + * + * @sa fixed + * @sa external + */ +template struct dynamic; + +} // namespace cml + +#endif + +// ------------------------------------------------------------------------- +// vim:ft=cpp