diff options
Diffstat (limited to 'OpenSim/Data/SQLite')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteUserData.cs | 27 |
1 files changed, 27 insertions, 0 deletions
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 | |||
474 | return true; | 474 | return true; |
475 | } | 475 | } |
476 | 476 | ||
477 | /// Appearance | ||
478 | /// TODO: stubs for now to get us to a compiling state gently | ||
479 | override public UserAppearance GetUserAppearance(LLUUID user) | ||
480 | { | ||
481 | return new UserAppearance(); | ||
482 | } | ||
483 | |||
484 | override public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) | ||
485 | { | ||
486 | return; | ||
487 | } | ||
488 | |||
489 | override public void AddAttachment(LLUUID user, LLUUID item) | ||
490 | { | ||
491 | return; | ||
492 | } | ||
493 | |||
494 | override public void RemoveAttachment(LLUUID user, LLUUID item) | ||
495 | { | ||
496 | return; | ||
497 | } | ||
498 | |||
499 | override public List<LLUUID> GetAttachments(LLUUID user) | ||
500 | { | ||
501 | return new List<LLUUID>(); | ||
502 | } | ||
503 | |||
477 | /// <summary> | 504 | /// <summary> |
478 | /// Returns the name of the storage provider | 505 | /// Returns the name of the storage provider |
479 | /// </summary> | 506 | /// </summary> |