1 /**
2  * -*- c++ -*-
3  *
4  * \file operations.hpp
5  *
6  * \brief This header includes several headers from the operation directory.
7  *
8  * Copyright (c) 2009, Gunter Winkler
9  *
10  * Distributed under the Boost Software License, Version 1.0. (See
11  * accompanying file LICENSE_1_0.txt or copy at
12  * http://www.boost.org/LICENSE_1_0.txt)
13  *
14  * \author Gunter Winkler (guwi17 at gmx dot de)
15  */
16 
17 #ifndef BOOST_NUMERIC_UBLAS_OPERATIONS_HPP
18 #define BOOST_NUMERIC_UBLAS_OPERATIONS_HPP
19 
20 #include <boost/numeric/ublas/operation/begin.hpp>
21 #include <boost/numeric/ublas/operation/end.hpp>
22 #include <boost/numeric/ublas/operation/num_columns.hpp>
23 #include <boost/numeric/ublas/operation/num_rows.hpp>
24 #include <boost/numeric/ublas/operation/size.hpp>
25 
26 #endif
27