diff options
author | Mike Mazur | 2008-07-31 09:24:28 +0000 |
---|---|---|
committer | Mike Mazur | 2008-07-31 09:24:28 +0000 |
commit | 2270b252656146d9d74b84665a7ace6c3139db30 (patch) | |
tree | 7a967ee50349cf4301ed801e0b8c85f5060ffe1d /OpenSim/Data/UserDataBase.cs | |
parent | dropping intermediate GridInfoPlugin.addin.xml, as it's no longer (diff) | |
download | opensim-SC_OLD-2270b252656146d9d74b84665a7ace6c3139db30.zip opensim-SC_OLD-2270b252656146d9d74b84665a7ace6c3139db30.tar.gz opensim-SC_OLD-2270b252656146d9d74b84665a7ace6c3139db30.tar.bz2 opensim-SC_OLD-2270b252656146d9d74b84665a7ace6c3139db30.tar.xz |
Thanks, sempuki, for a patch that moves all Grid Server's plugins to
PluginLoader. Fix issue 1871.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/UserDataBase.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Data/UserDataBase.cs b/OpenSim/Data/UserDataBase.cs index eb21aee..e4e39d6 100644 --- a/OpenSim/Data/UserDataBase.cs +++ b/OpenSim/Data/UserDataBase.cs | |||
@@ -55,9 +55,6 @@ namespace OpenSim.Data | |||
55 | public abstract List<FriendListItem> GetUserFriendList(LLUUID friendlistowner); | 55 | public abstract List<FriendListItem> GetUserFriendList(LLUUID friendlistowner); |
56 | public abstract bool MoneyTransferRequest(LLUUID from, LLUUID to, uint amount); | 56 | public abstract bool MoneyTransferRequest(LLUUID from, LLUUID to, uint amount); |
57 | public abstract bool InventoryTransferRequest(LLUUID from, LLUUID to, LLUUID inventory); | 57 | public abstract bool InventoryTransferRequest(LLUUID from, LLUUID to, LLUUID inventory); |
58 | public abstract string Version {get;} | ||
59 | public abstract string Name {get;} | ||
60 | public abstract void Initialise(string connect); | ||
61 | public abstract List<AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query); | 58 | public abstract List<AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query); |
62 | public abstract AvatarAppearance GetUserAppearance(LLUUID user); | 59 | public abstract AvatarAppearance GetUserAppearance(LLUUID user); |
63 | public abstract void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); | 60 | public abstract void UpdateUserAppearance(LLUUID user, AvatarAppearance appearance); |
@@ -78,5 +75,11 @@ namespace OpenSim.Data | |||
78 | public abstract void AddAttachment(LLUUID user, LLUUID item); | 75 | public abstract void AddAttachment(LLUUID user, LLUUID item); |
79 | public abstract void RemoveAttachment(LLUUID user, LLUUID item); | 76 | public abstract void RemoveAttachment(LLUUID user, LLUUID item); |
80 | public abstract List<LLUUID> GetAttachments(LLUUID user); | 77 | public abstract List<LLUUID> GetAttachments(LLUUID user); |
78 | |||
79 | public abstract string Version {get;} | ||
80 | public abstract string Name {get;} | ||
81 | public abstract void Initialise(string connect); | ||
82 | public abstract void Initialise(); | ||
83 | public abstract void Dispose(); | ||
81 | } | 84 | } |
82 | } | 85 | } |