Trax3 3.1.0
trax track library
Loading...
Searching...
No Matches
AnlWriter.h
1// Copyright (c) 2013 - 2019 Marc-Michael Horstmann;
2// Copyright (c) 2020 - 2024 Trend Verlag;
3// All Rights Reserved.
4//
5//
6// trax track library
7// AD 2024
8//
9// "the resolution of all the fruitless searches"
10//
11// Peter Gabriel
12
13#pragma once
14
15#include "trax/Configuration.h"
16#include <filesystem>
17
18namespace trax{
19
20 struct Module;
21 struct ModuleCollection;
22
23 dclspc void Write( const ModuleCollection& moduleSet, const std::filesystem::path& path );
24
25 dclspc void Write( const Module& modul, const std::filesystem::path& path );
26
27} // namespace trax
Namespace of all the trax track libraries classes and methods.
Definition Collection.h:17
A collection of modules.
Definition ModuleCollection.h:41
A module is a chunck of railroad stuff that is all located in one rectangular volume.
Definition Module.h:60