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/SQLite | |
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/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> |