summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Step5/MathFunctions/MathLogger/MathOutput.h
blob: 63f0aebac5cbfd353e606d08e4c123ea6faf94e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <iostream>
#include <string>

namespace mathlogger {
inline void WriteLog(std::string const& msg)
{
  std::cout << msg;
}
}