added stubs for appearance bits to all the db layers

This commit is contained in:
Sean Dague
2008-05-01 20:16:26 +00:00
parent 859d71ecfb
commit 86d2e53d1f
6 changed files with 126 additions and 1 deletions

View File

@@ -628,6 +628,33 @@ namespace OpenSim.Data.MySQL
return false;
}
/// Appearance
/// TODO: stubs for now to get us to a compiling state gently
override public UserAppearance GetUserAppearance(LLUUID user)
{
return new UserAppearance();
}
override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance)
{
return;
}
override public void AddAttachment(LLUUID user, LLUUID item)
{
return;
}
override public void RemoveAttachment(LLUUID user, LLUUID item)
{
return;
}
override public List<LLUUID> GetAttachments(LLUUID user)
{
return new List<LLUUID>();
}
/// <summary>
/// Database provider name
/// </summary>