Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
buildinfo.h
Go to the documentation of this file.
1#ifndef BUILDINFO_H
2#define BUILDINFO_H
3
4#include <string>
5
10
11namespace mazes {
12
15struct build_info {
16 static inline const std::string CommitSHA = "'7e10522'";
17 static inline const std::string Timestamp = "2025-02-21T08:01:19";
18 static inline const std::string Version = "6.0.1";
19};
20
21}
22
23#endif // buildinfo.h
24
Namespace for the maze builder.
Definition algo_interface.h:9
Build information for the maze builder library.
Definition buildinfo.h:15