LineString.h
Go to the documentation of this file.
1 #ifndef _anal_LineString_h_
2 #define _anal_LineString_h_
3 
4 #include <string>
5 #include <iostream>
6 
7 
8 namespace anal {
9 
10  struct LineString : public std::string {
11  friend std::istream& operator>>(std::istream& is, LineString& line)
12  { return std::getline(is, line); }
13  };
14 
15 }
16 
17 
18 #endif
bool is(const double a, const double b)
Definition: testlib.cc:113
friend std::istream & operator>>(std::istream &is, LineString &line)
Definition: LineString.h:11

, generated on Tue Sep 26 2023.