#include <iosfwd>
#include <boost/io/ios_state.hpp>
#include "zypp/base/Flags.h"
#include "zypp/base/PtrTypes.h"
#include "zypp/base/Function.h"
#include "zypp/base/NonCopyable.h"
Go to the source code of this file.
|
| zypp |
| Easy-to use interface to the ZYPP dependency resolver.
|
|
| zypp::iostr |
| Iostream related utilities.
|
|
|
std::string | zypp::iostr::getline (std::istream &str) |
| Read one line from stream. More...
|
|
std::ostream & | zypp::iostr::copy (std::istream &from_r, std::ostream &to_r) |
| Copy istream to ostream. More...
|
|
std::ostream & | zypp::iostr::copyIndent (std::istream &from_r, std::ostream &to_r, const std::string &indent_r="> ") |
| Copy istream to ostream, prefixing each line with indent_r (default "> " ). More...
|
|
void | zypp::iostr::tee (std::istream &from_r, std::ostream &to1_r, std::ostream &to2_r) |
| Copy istream to ostream, prefixing each line with indent_r (default "> " ). More...
|
|
int | zypp::iostr::forEachLine (std::istream &str_r, function< bool(int, std::string)> consume_r) |
| Simple lineparser: Call functor consume_r for each line. More...
|
|
| zypp::iostr::ZYPP_DECLARE_FLAGS (ParseFlags, ParseFlag) |
|
| zypp::iostr::ZYPP_DECLARE_OPERATORS_FOR_FLAGS (ParseFlags) |
|
int | zypp::iostr::simpleParseFile (std::istream &str_r, ParseFlags flags_r, function< bool(int, std::string)> consume_r) |
| Simple lineparser optionally trimming and skipping comments. More...
|
|
int | zypp::iostr::simpleParseFile (std::istream &str_r, function< bool(int, std::string)> consume_r) |
|