mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-19 14:27:55 +08: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;
|
||
|
};
|