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 explicit Version(std::string_view version);
10
11 bool operator<(const Version& another) const;
12
13 bool operator>(const Version& another) const;
14
15 bool operator==(const Version& another) const;
16 bool operator<=(const Version& another) const;
17 bool operator>=(const Version& another) const;
18
19 private:
20 int major;
21 int minor;
22};
Definition Version.h:8