Antares Xpansion
Investment simulations for Antares studies
Loading...
Searching...
No Matches
Version.h
1//
2// Created by marechaljas on 10/01/24.
3//
4
5#pragma once
6#include <string_view>
7
8struct Version
9{
10 explicit Version(std::string_view version);
11
12 bool operator<(const Version& another) const;
13
14 bool operator>(const Version& another) const;
15
16 bool operator==(const Version& another) const;
17 bool operator<=(const Version& another) const;
18 bool operator>=(const Version& another) const;
19
20private:
21 int major;
22 int minor;
23};
Definition Version.h:9