From 86d2e53d1f616eea8603533e9cba236fbae275ef Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 1 May 2008 20:16:26 +0000 Subject: added stubs for appearance bits to all the db layers --- OpenSim/Data/MSSQL/MSSQLUserData.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'OpenSim/Data/MSSQL') diff --git a/OpenSim/Data/MSSQL/MSSQLUserData.cs b/OpenSim/Data/MSSQL/MSSQLUserData.cs index a44d022..91c1b34 100644 --- a/OpenSim/Data/MSSQL/MSSQLUserData.cs +++ b/OpenSim/Data/MSSQL/MSSQLUserData.cs @@ -744,6 +744,33 @@ namespace OpenSim.Data.MSSQL 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 GetAttachments(LLUUID user) + { + return new List(); + } + /// /// Database provider name /// -- cgit v1.1