Changeset 720 for trunk/yat/microarray


Ignore:
Timestamp:
Dec 26, 2006, 7:21:36 PM (16 years ago)
Author:
Jari Häkkinen
Message:

Fixes #170. Almost all inlines removed, some classes have no cc file.

Location:
trunk/yat/microarray
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/microarray/DataSet.cc

    r688 r720  
    11// $Id$
     2
     3/*
     4  Copyright (C) The authors contributing to this file.
     5
     6  This file is part of the yat library, http://lev.thep.lu.se/trac/yat
     7
     8  The yat library is free software; you can redistribute it and/or
     9  modify it under the terms of the GNU General Public License as
     10  published by the Free Software Foundation; either version 2 of the
     11  License, or (at your option) any later version.
     12
     13  The yat library is distributed in the hope that it will be useful,
     14  but WITHOUT ANY WARRANTY; without even the implied warranty of
     15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     16  General Public License for more details.
     17
     18  You should have received a copy of the GNU General Public License
     19  along with this program; if not, write to the Free Software
     20  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
     21  02111-1307, USA.
     22*/
    223
    324#include "DataSet.h"
     
    5677  }
    5778
     79
     80  const classifier::MatrixLookup& DataSet::data(void) const
     81  {
     82    return data_;
     83  }
     84
     85
     86  const std::vector<std::string>& DataSet::probe(void) const
     87  {
     88    return probe_;
     89  }
     90
     91
     92  const classifier::Target& DataSet::target(void) const
     93  {
     94    return target_;
     95  }
     96
    5897}}} // end of namespace microarray, yat, and theplu
  • trunk/yat/microarray/DataSet.h

    r706 r720  
    5757
    5858    ///
     59    /// @return data
     60    ///
     61    const classifier::MatrixLookup& data(void) const;
     62
     63    ///
    5964    /// @return probes
    6065    ///
    61     inline const std::vector<std::string>& probe(void) const { return probe_; }
     66    const std::vector<std::string>& probe(void) const;
    6267
    6368    ///
    6469    /// @return target
    6570    ///
    66     inline const classifier::Target& target(void) const { return target_; }
    67 
    68     ///
    69     /// @return data
    70     ///
    71     inline const classifier::MatrixLookup& data(void) const { return data_; }
     71    const classifier::Target& target(void) const;
    7272
    7373  private:
Note: See TracChangeset for help on using the changeset viewer.