Files
nvbench/nvbench/printer_base.cu
2021-03-02 17:06:13 -05:00

16 lines
274 B
Plaintext

#include <nvbench/printer_base.cuh>
#include <ostream>
namespace nvbench
{
printer_base::printer_base(std::ostream &ostream)
: m_ostream{ostream}
{}
// Defined here to keep <ostream> out of the header
printer_base::~printer_base() = default;
} // namespace nvbench