New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
tags.hpp in vendors/XIOS/current/extern/boost/include/boost/numeric/ublas – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/numeric/ublas/tags.hpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 731 bytes
Line 
1/**
2 * -*- c++ -*-
3 *
4 * \file tags.hpp
5 *
6 * \brief Tags.
7 *
8 * Copyright (c) 2009, Marco Guazzone
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 Marco Guazzone, marco.guazzone@gmail.com
15 */
16
17#ifndef BOOST_NUMERIC_UBLAS_TAG_HPP
18#define BOOST_NUMERIC_UBLAS_TAG_HPP
19
20
21namespace boost { namespace numeric { namespace ublas { namespace tag {
22
23/// \brief Tag for the major dimension.
24struct major {};
25
26
27/// \brief Tag for the minor dimension.
28struct minor {};
29
30
31/// \brief Tag for the leading dimension.
32struct leading {};
33
34}}}} // Namespace boost::numeric::ublas::tag
35
36
37#endif // BOOST_NUMERIC_UBLAS_TAG_HPP
Note: See TracBrowser for help on using the repository browser.