]> Dogcows Code - chaz/yoink/blob - src/cml/dynamic.h
testing new non-autotools build system
[chaz/yoink] / src / cml / dynamic.h
1 /* -*- C++ -*- ------------------------------------------------------------
2
3 Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/
4
5 The Configurable Math Library (CML) is distributed under the terms of the
6 Boost Software License, v1.0 (see cml/LICENSE for details).
7
8 *-----------------------------------------------------------------------*/
9 /** @file
10 * @brief
11 */
12
13 #ifndef dynamic_h
14 #define dynamic_h
15
16 #include <cml/defaults.h>
17
18 namespace cml {
19
20 /** This is a selector for dynamic 1D and 2D arrays.
21 *
22 * The dynamic<> struct has no implementation; it is used only to select a
23 * 1D or 2D array type as the base class of a vector or matrix.
24 *
25 * @sa fixed
26 * @sa external
27 */
28 template<class Alloc = CML_DEFAULT_ARRAY_ALLOC> struct dynamic;
29
30 } // namespace cml
31
32 #endif
33
34 // -------------------------------------------------------------------------
35 // vim:ft=cpp
This page took 0.031549 seconds and 4 git commands to generate.