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/SQLite/SQLiteUserData.cs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'OpenSim/Data/SQLite/SQLiteUserData.cs') diff --git a/OpenSim/Data/SQLite/SQLiteUserData.cs b/OpenSim/Data/SQLite/SQLiteUserData.cs index 6891373..90dec3e 100644 --- a/OpenSim/Data/SQLite/SQLiteUserData.cs +++ b/OpenSim/Data/SQLite/SQLiteUserData.cs @@ -474,6 +474,33 @@ namespace OpenSim.Data.SQLite return true; } + /// 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(); + } + /// /// Returns the name of the storage provider /// -- cgit v1.1