mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
16 lines
246 B
C
16 lines
246 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
struct VersionHelper
|
||
|
|
{
|
||
|
|
VersionHelper(std::string str);
|
||
|
|
VersionHelper(int major, int minor, int revision);
|
||
|
|
|
||
|
|
bool operator>(const VersionHelper& rhs);
|
||
|
|
|
||
|
|
int major;
|
||
|
|
int minor;
|
||
|
|
int revision;
|
||
|
|
};
|