Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Help/guide/tutorial/Step7/MathFunctions/MathLogger/MathOutput.h
5022 views
1
#pragma once
2
3
#include <iostream>
4
#include <string>
5
6
namespace mathlogger {
7
inline void WriteLog(std::string const& msg)
8
{
9
std::cout << msg;
10
}
11
}
12
13