18 lines
312 B
C++
18 lines
312 B
C++
#pragma once
|
|
#include "defines.h"
|
|
#include <string>
|
|
class Guid
|
|
{
|
|
public:
|
|
GUID Data;
|
|
Guid();
|
|
Guid(GUID guid);
|
|
Guid(std::string str);
|
|
static Guid NewGuid();
|
|
static Guid Parse(const std::string& input);
|
|
std::string ToString();
|
|
bool operator==(const Guid& other);
|
|
bool operator!=(const Guid& other);
|
|
};
|
|
|