C++QEDElements  v2 Milestone 10
a framework for simulating open quantum dynamics – generic elements
QM_Picture.h
1 // Copyright András Vukics 2006–2014. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.txt)
2 // -*- C++ -*-
3 #ifndef CPPQEDELEMENTS_UTILS_QM_PICTURE_H_INCLUDED
4 #define CPPQEDELEMENTS_UTILS_QM_PICTURE_H_INCLUDED
5 
6 #include "QM_PictureFwd.h"
7 
8 #include "Pars.h"
9 
10 #include<iosfwd>
11 
12 std::ostream& operator<<(std::ostream&, QM_Picture);
13 std::istream& operator>>(std::istream&, QM_Picture&);
14 
15 
16 namespace picture {
18 QM_Picture& updateWithPicture(parameters::ParameterTable& p, int argc, char* argv[], const std::string& prefix="--");
19 }
20 
21 #endif // CPPQEDELEMENTS_UTILS_QM_PICTURE_H_INCLUDED
std::ostream & operator<<(std::ostream &, Method)
std::istream & operator>>(std::istream &, Method &)
QM_Picture & updateWithPicture(ParameterTable &p, int argc, char *argv[], const std::string &prefix="--")
Convenience version of picture::updateWithPicture that includes the highest-level version information...
Definition: Evolution.h:31