Ignore:
Timestamp:
Feb 28, 2008, 12:36:46 AM (15 years ago)
Author:
Jari Häkkinen
Message:

Improved memory usage of NNIFileConverter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/se/lu/thep/wenni/lib/c++_tools/gslapi/vector.h

    r110 r597  
     1#ifndef _theplu_gslapi_vector_
     2#define _theplu_gslapi_vector_
     3
    14// $Id$
    25
     
    58  Copyright (C) 2004 Jari Häkkinen, Peter Johansson
    69  Copyright (C) 2005 Jari Häkkinen, Peter Johansson, Markus Ringnér
    7   Copyright (C) 2006 Jari Häkkinen
     10  Copyright (C) 2006, 2008 Jari Häkkinen
    811
    912  This file is part of the thep c++ tools library,
     
    2629*/
    2730
    28 #ifndef _theplu_gslapi_vector_
    29 #define _theplu_gslapi_vector_
    30 
    3131#include <c++_tools/utility/Exception.h>
    3232
    3333#include <iostream>
     34#include <string>
     35#include <utility>
    3436#include <vector>
    35 #include <utility>
    3637
    3738#include <gsl/gsl_vector.h>
     
    179180    ///
    180181    explicit vector(std::istream &, char sep='\0') throw (utility::IO_error,std::exception);
     182
     183    ///
     184    /// The string constructor.
     185    ///
     186    /// Either elements should be separated
     187    /// with white space characters (default), or elements should be separated
     188    /// by the delimiter \a sep. When delimiter \a sep is used empty elements
     189    /// are stored as NaN's (except that empty lines are ignored). The
     190    /// end of input to the vector is at end of file marker.
     191    ///
     192    explicit vector(std::string &, char sep='\0') throw (utility::IO_error,std::exception);
    181193
    182194
Note: See TracChangeset for help on using the changeset viewer.