Revision 912c7dddac18fb77d69910e60a0b6cd43d72e8d5 authored by Lars Bilke on 01 March 2021, 14:30:14 UTC, committed by Lars Bilke on 01 March 2021, 14:30:14 UTC
Bumped minimum Conan to 1.33.0

See merge request ogs/ogs!3473
2 parent s d159997 + f8436f5
Raw File
Stream.h
/**
 * \author Norihiro Watanabe
 * \date   2014-03-07
 * \brief  Helper tools for debugging
 *
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <algorithm>
#include <iterator>
#include <ostream>
#include <vector>

template<typename T>
std::ostream &operator <<(std::ostream &os, const std::vector<T> &v) {
    std::copy(v.begin(), v.end(), std::ostream_iterator<T>(os, " "));
    os << "\n";
    return os;
}
back to top