opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
stl.h
Go to the documentation of this file.
1#pragma once
2
3#include <ctime>
4#include <iosfwd>
5#include <string>
6#include <string_view>
7
8namespace osc { class Mesh; }
9
10namespace osc
11{
13
14 explicit STLMetadata();
15
16 explicit STLMetadata(
17 std::string_view authoring_tool_
18 );
19
20 std::string authoring_tool;
22 };
23
24 class STL final {
25 public:
26 static void write(std::ostream&, const Mesh&, const STLMetadata&);
27 };
28}
Definition mesh.h:33
Definition stl.h:24
static void write(std::ostream &, const Mesh &, const STLMetadata &)
Definition custom_decoration_generator.h:5
constexpr U to(T &&value)
Definition conversion.h:56
Definition stl.h:12
STLMetadata(std::string_view authoring_tool_)
std::tm creation_time
Definition stl.h:21
std::string authoring_tool
Definition stl.h:20