diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/newtype/version.hpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/newtype/version.hpp b/include/newtype/version.hpp new file mode 100644 index 0000000..c7c3314 --- /dev/null +++ b/include/newtype/version.hpp @@ -0,0 +1,23 @@ +#ifndef NEWTYPE_VERSION_HPP +#define NEWTYPE_VERSION_HPP + +namespace nt +{ + + constexpr struct + { + int const major; + int const minor; + int const patch; + + char const * const name; + } version{ + .major = 1, + .minor = 0, + .patch = 0, + .name = "Francesca", + }; + +} // namespace nt + +#endif
\ No newline at end of file |
