You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
312 B
17 lines
312 B
#pragma once
|
|
|
|
#include <mshio/MshSpec.h>
|
|
|
|
#include <ostream>
|
|
|
|
namespace mshio
|
|
{
|
|
|
|
inline void save_nanospline_format(std::ostream& out, const MshSpec& spec)
|
|
{
|
|
out << "$NanoSplineFormat" << std::endl;
|
|
out << spec.nanospline_format.version << std::endl;
|
|
out << "$EndNanoSplineFormat" << std::endl;
|
|
}
|
|
|
|
}
|
|
|