Changeset 597 for trunk/se/lu/thep/wenni/lib/c++_tools/gslapi/vector.h
- Timestamp:
- Feb 28, 2008, 12:36:46 AM (15 years ago)
- 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 1 4 // $Id$ 2 5 … … 5 8 Copyright (C) 2004 Jari Häkkinen, Peter Johansson 6 9 Copyright (C) 2005 Jari Häkkinen, Peter Johansson, Markus Ringnér 7 Copyright (C) 2006 Jari Häkkinen10 Copyright (C) 2006, 2008 Jari Häkkinen 8 11 9 12 This file is part of the thep c++ tools library, … … 26 29 */ 27 30 28 #ifndef _theplu_gslapi_vector_29 #define _theplu_gslapi_vector_30 31 31 #include <c++_tools/utility/Exception.h> 32 32 33 33 #include <iostream> 34 #include <string> 35 #include <utility> 34 36 #include <vector> 35 #include <utility>36 37 37 38 #include <gsl/gsl_vector.h> … … 179 180 /// 180 181 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); 181 193 182 194
Note: See TracChangeset
for help on using the changeset viewer.