mirror of
https://github.com/NVIDIA/nvbench.git
synced 2026-04-20 06:48:53 +00:00
16 lines
274 B
Plaintext
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
|