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
8
struct
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
20
private
:
21
int
major;
22
int
minor;
23
};
Version
Definition
Version.h:9
src
cpp
lpnamer
main
private
Version.h
Generated by
1.12.0