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/MySQL | |
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/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLUserData.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserData.cs b/OpenSim/Data/MySQL/MySQLUserData.cs index 382d69c..a01bf60 100644 --- a/OpenSim/Data/MySQL/MySQLUserData.cs +++ b/OpenSim/Data/MySQL/MySQLUserData.cs | |||
@@ -628,6 +628,33 @@ namespace OpenSim.Data.MySQL | |||
628 | return false; | 628 | return false; |
629 | } | 629 | } |
630 | 630 | ||
631 | /// Appearance | ||
632 | /// TODO: stubs for now to get us to a compiling state gently | ||
633 | override public UserAppearance GetUserAppearance(LLUUID user) | ||
634 | { | ||
635 | return new UserAppearance(); | ||
636 | } | ||
637 | |||
638 | override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) | ||
639 | { | ||
640 | return; | ||
641 | } | ||
642 | |||
643 | override public void AddAttachment(LLUUID user, LLUUID item) | ||
644 | { | ||
645 | return; | ||
646 | } | ||
647 | |||
648 | override public void RemoveAttachment(LLUUID user, LLUUID item) | ||
649 | { | ||
650 | return; | ||
651 | } | ||
652 | |||
653 | override public List<LLUUID> GetAttachments(LLUUID user) | ||
654 | { | ||
655 | return new List<LLUUID>(); | ||
656 | } | ||
657 | |||
631 | /// <summary> | 658 | /// <summary> |
632 | /// Database provider name | 659 | /// Database provider name |
633 | /// </summary> | 660 | /// </summary> |