bes  Updated for version 3.20.6
fileout_covjson/StreamString.h
1 // -*- mode: c++; c-basic-offset:4 -*-
2 //
3 // StringStream.h
4 //
5 // This file is part of BES CovJSON File Out Module
6 //
7 // Copyright (c) 2018 OPeNDAP, Inc.
8 // Author: Corey Hemphill <hemphilc@oregonstate.edu>
9 // Author: River Hendriksen <hendriri@oregonstate.edu>
10 // Author: Riley Rimer <rrimer@oregonstate.edu>
11 //
12 // Adapted from the File Out JSON module implemented by Nathan Potter
13 //
14 // This library is free software; you can redistribute it and/or
15 // modify it under the terms of the GNU Lesser General Public
16 // License as published by the Free Software Foundation; either
17 // version 2.1 of the License, or (at your option) any later version.
18 //
19 // This library is distributed in the hope that it will be useful,
20 // but WITHOUT ANY WARRANTY; without even the implied warranty of
21 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 // Lesser General Public License for more details.
23 //
24 // You should have received a copy of the GNU Lesser General Public
25 // License along with this library; if not, write to the Free Software
26 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 //
28 
29 #ifndef STREAMSTRING_H_
30 #define STREAMSTRING_H_
31 
32 #include <Str.h>
33 
34 namespace libdap {
35 
36 class StreamString: public Str{
37 
38 public:
39  StreamString(const string &n): Str(n) {};
40  StreamString(const string &n, const string &d): Str(n,d) {};
41  virtual ~StreamString() {};
42  StreamString(const Str &copy_from): Str(copy_from) {};
43 
44  friend ostream& operator<<(ostream& out, const Str& s) // output
45  {
46  out << s.value();
47 
48  return out;
49  }
50 
51  friend istream& operator>>(istream& in, Str& s) // input
52  {
53  string tmp;
54  in >> tmp;
55  s.set_value(tmp);
56 
57  return in;
58  }
59 };
60 
61 } /* namespace libdap */
62 
63 #endif /* STREAMSTRING_H_ */
libdap::StreamString
Definition: fileout_covjson/StreamString.h:36
libdap
Definition: BESDapFunctionResponseCache.h:35
Str