Ignore:
Timestamp:
Mar 19, 2010, 4:30:02 AM (13 years ago)
Author:
Peter
Message:

fixes #543

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/classifier/MatrixLookup.h

    r2119 r2223  
    88  Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér
    99  Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
    10   Copyright (C) 2009 Peter Johansson
     10  Copyright (C) 2009, 2010 Peter Johansson
    1111
    1212  This file is part of the yat library, http://dev.thep.lu.se/yat
     
    2727
    2828#include "yat/utility/Container2DIterator.h"
     29#include "yat/utility/deprecate.h"
    2930#include "yat/utility/Index.h"
    3031#include "yat/utility/iterator_traits.h"
     
    150151    /// undefined.
    151152    ///
     153    /// \deprecated Provided for backgroundColor compatibility with
     154    /// the 0.6 API. Use MatrixLookup(const utility::Matrix&, const
     155    /// utility::Index&, const utility::Index&)
     156    ///
    152157    MatrixLookup(const utility::Matrix& matrix,
    153158                 const utility::Index& index,
    154                  const bool row_vectors);
     159                 const bool row_vectors) YAT_DEPRECATE;
    155160
    156161    ///
     
    215220    /// undefined.
    216221    ///
     222    /// \deprecated Provided for backgroundColor compatibility with
     223    /// the 0.6 API. Use MatrixLookup(const MatrixLookup&, const
     224    /// utility::Index&, const utility::Index&)
     225    ///
    217226    MatrixLookup(const MatrixLookup& ml, const utility::Index&,
    218227                 const bool row_vectors);
     
    228237    /// @brief The istream constructor.
    229238    ///
    230     /// In construction the underlying matrix is created from
    231     /// stream. The MatrixLookup will be owner of the underlying
     239    /// In construction the underlying utility::Matrix is created from
     240    /// the stream using utility::Matrix(std::istream&). The
     241    /// constructed MatrixLookup will be owner of the underlying
    232242    /// matrix.
    233243    ///
    234     /// @see matrix(istream&) for details.
     244    /// @see Matrix(istream&) for details.
    235245    ///
    236246    MatrixLookup(std::istream&, char sep='\0');
Note: See TracChangeset for help on using the changeset viewer.