make this a class

This commit is contained in:
Sean Dague
2008-04-09 15:20:26 +00:00
parent f8cb4f993d
commit 5861084e0b

View File

@@ -10,10 +10,12 @@ using libsecondlife;
namespace OpenSim.Framework
{
[Serializable]
public struct OSUUID: IComparable
public class OSUUID: IComparable
{
public Guid UUID;
public OSUUID() {}
/* Constructors */
public OSUUID(string s)
{
@@ -39,7 +41,7 @@ namespace OpenSim.Framework
}
// out conversion
public string ToString()
public override string ToString()
{
return UUID.ToString();
}