1
0
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:
2013-01-17 01:14:45 -08:00
parent dbf23ac28a
commit f980f022dd
60 changed files with 167 additions and 864 deletions

View File

@ -51,6 +51,11 @@ plUUID::plUUID()
Clear();
}
plUUID::plUUID(const char* s)
{
FromString(s);
}
plUUID::plUUID(const plString& s)
{
FromString(s.c_str());

View File

@ -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);