mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 11:37:00 -07:00
14 lines
No EOL
241 B
C++
14 lines
No EOL
241 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace gdpm::version{
|
|
struct version_context{
|
|
int major;
|
|
int minor;
|
|
int patch;
|
|
};
|
|
|
|
std::string to_string(const version_context& context);
|
|
version_context to_version(const std::string& version);
|
|
} |