LOOS 4.1.0
The Lightweight Object Oriented Structural analysis library/toolkit
Loading...
Searching...
No Matches
version.hpp
1#if !defined(LOOS_VERSION_HPP)
2
3#include <string>
4
5#define LOOS_VERSION_HPP
6
7#define LOOS_VERSION "4.1.0"
8#define LOOS_VERSION_MAJOR "4"
9#define LOOS_VERSION_MINOR "1"
10
11namespace loos
12{
13 extern const std::string version_string;
14}
15
16#endif
Namespace for most things not already encapsulated within a class.
Definition version.cpp:3