ProteoWizard
Stream.hpp
Go to the documentation of this file.
1 //
2 // $Id: Stream.hpp 2976 2011-09-14 20:51:35Z pcbrefugee $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars Sinai Medical Center, Los Angeles, California 90048
9 // Copyright 2008 Vanderbilt University - Nashville, TN 37232
10 //
11 // Licensed under the Apache License, Version 2.0 (the "License");
12 // you may not use this file except in compliance with the License.
13 // You may obtain a copy of the License at
14 //
15 // http://www.apache.org/licenses/LICENSE-2.0
16 //
17 // Unless required by applicable law or agreed to in writing, software
18 // distributed under the License is distributed on an "AS IS" BASIS,
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 // See the License for the specific language governing permissions and
21 // limitations under the License.
22 //
23 
24 #include <iostream>
25 #include <fstream>
26 #include <sstream>
27 #include <iomanip>
28 #include <boost/iostreams/operations.hpp>
30 
31 namespace bio = boost::iostreams;
32 
33 using std::ios;
34 using std::iostream;
35 using std::istream;
36 using std::ostream;
37 
38 using std::istream_iterator;
39 using std::ostream_iterator;
40 
41 using std::fstream;
42 using std::ifstream;
43 using std::ofstream;
44 
45 using std::stringstream;
46 using std::istringstream;
47 using std::ostringstream;
48 
49 #ifndef BOOST_NO_STD_WSTRING
50 // these cause trouble on mingw gcc - libstdc++ widechar not fully there yet
51 using std::wstringstream;
52 using std::wistringstream;
53 using std::wostringstream;
54 #endif
55 
56 using std::getline;
57 
58 using std::streampos;
59 using std::streamoff;
60 using std::streamsize;
61 
62 using std::cin;
63 using std::cout;
64 using std::cerr;
65 using std::endl;
66 using std::flush;
67 
68 using std::setprecision;
69 using std::setw;
70 using std::setfill;
71 using std::setbase;
72 
73 using std::showbase;
74 using std::showpoint;
75 using std::showpos;
76 using std::boolalpha;
77 using std::noshowbase;
78 using std::noshowpoint;
79 using std::noshowpos;
80 using std::noboolalpha;
81 using std::fixed;
82 using std::scientific;
83 using std::dec;
84 using std::oct;
85 using std::hex;
86 
88 using boost::bad_lexical_cast;