25 lines
713 B
C++
25 lines
713 B
C++
/* -*- 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 A few simple metaprogramming tools.
|
|
*/
|
|
|
|
#ifndef cml_meta_h
|
|
#define cml_meta_h
|
|
|
|
/* Include all of the template metaprogramming tools: */
|
|
#include <cml/core/meta/common.h>
|
|
#include <cml/core/meta/if.h>
|
|
#include <cml/core/meta/switch.h>
|
|
|
|
#endif
|
|
|
|
// -------------------------------------------------------------------------
|
|
// vim:ft=cpp
|