diff options
author | Sean Dague | 2008-05-01 20:16:26 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-01 20:16:26 +0000 |
commit | 86d2e53d1f616eea8603533e9cba236fbae275ef (patch) | |
tree | 890e0d6c8b06f4199fe05a6835d35ec94028ebd6 /OpenSim/Data/MSSQL | |
parent | remove db4o from prebuild. It isn't removed from the tree yet, (diff) | |
download | opensim-SC_OLD-86d2e53d1f616eea8603533e9cba236fbae275ef.zip opensim-SC_OLD-86d2e53d1f616eea8603533e9cba236fbae275ef.tar.gz opensim-SC_OLD-86d2e53d1f616eea8603533e9cba236fbae275ef.tar.bz2 opensim-SC_OLD-86d2e53d1f616eea8603533e9cba236fbae275ef.tar.xz |
added stubs for appearance bits to all the db layers
Diffstat (limited to 'OpenSim/Data/MSSQL')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLUserData.cs | 27 |
1 files changed, 27 insertions, 0 deletions
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 | |||
744 | return false; | 744 | return false; |
745 | } | 745 | } |
746 | 746 | ||
747 | /// Appearance | ||
748 | /// TODO: stubs for now to get us to a compiling state gently | ||
749 | override public UserAppearance GetUserAppearance(LLUUID user) | ||
750 | { | ||
751 | return new UserAppearance(); | ||
752 | } | ||
753 | |||
754 | override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) | ||
755 | { | ||
756 | return; | ||
757 | } | ||
758 | |||
759 | override public void AddAttachment(LLUUID user, LLUUID item) | ||
760 | { | ||
761 | return; | ||
762 | } | ||
763 | |||
764 | override public void RemoveAttachment(LLUUID user, LLUUID item) | ||
765 | { | ||
766 | return; | ||
767 | } | ||
768 | |||
769 | override public List<LLUUID> GetAttachments(LLUUID user) | ||
770 | { | ||
771 | return new List<LLUUID>(); | ||
772 | } | ||
773 | |||
747 | /// <summary> | 774 | /// <summary> |
748 | /// Database provider name | 775 | /// Database provider name |
749 | /// </summary> | 776 | /// </summary> |