mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 03:09:13 +00:00
Replace pnProduct with a (very) thin CoreLib plProduct wrapper around CMake-defined product ID values
This commit is contained in:
@ -51,6 +51,11 @@ plUUID::plUUID()
|
||||
Clear();
|
||||
}
|
||||
|
||||
plUUID::plUUID(const char* s)
|
||||
{
|
||||
FromString(s);
|
||||
}
|
||||
|
||||
plUUID::plUUID(const plString& s)
|
||||
{
|
||||
FromString(s.c_str());
|
||||
|
@ -62,6 +62,7 @@ public:
|
||||
};
|
||||
|
||||
plUUID();
|
||||
plUUID(const char* s);
|
||||
plUUID(const plString& s);
|
||||
plUUID(const plUUID& other);
|
||||
|
||||
@ -73,7 +74,6 @@ public:
|
||||
int CompareTo(const plUUID* v) const;
|
||||
bool IsEqualTo(const plUUID* v) const;
|
||||
bool FromString(const char* str);
|
||||
bool FromString(const plString& str) { return FromString(str.c_str()); }
|
||||
bool ToString(plString& out) const;
|
||||
plString AsString() const;
|
||||
void Read(hsStream* s);
|
||||
|
Reference in New Issue
Block a user