diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Data.DB4o/DB4oUserData.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs index e0973f1..acd14fa 100644 --- a/OpenSim/Framework/Data.DB4o/DB4oUserData.cs +++ b/OpenSim/Framework/Data.DB4o/DB4oUserData.cs | |||
@@ -133,6 +133,31 @@ namespace OpenSim.Framework.Data.DB4o | |||
133 | } | 133 | } |
134 | } | 134 | } |
135 | 135 | ||
136 | #region User Friends List Data | ||
137 | |||
138 | public void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms) | ||
139 | { | ||
140 | //MainLog.Instance.Verbose("FRIEND", "Stub AddNewUserFriend called"); | ||
141 | } | ||
142 | |||
143 | public void RemoveUserFriend(LLUUID friendlistowner, LLUUID friend) | ||
144 | { | ||
145 | //MainLog.Instance.Verbose("FRIEND", "Stub RemoveUserFriend called"); | ||
146 | } | ||
147 | public void UpdateUserFriendPerms(LLUUID friendlistowner, LLUUID friend, uint perms) | ||
148 | { | ||
149 | //MainLog.Instance.Verbose("FRIEND", "Stub UpdateUserFriendPerms called"); | ||
150 | } | ||
151 | |||
152 | |||
153 | public List<FriendListItem> GetUserFriendList(LLUUID friendlistowner) | ||
154 | { | ||
155 | //MainLog.Instance.Verbose("FRIEND", "Stub GetUserFriendList called"); | ||
156 | return new List<FriendListItem>(); | ||
157 | } | ||
158 | |||
159 | #endregion | ||
160 | |||
136 | public List<Framework.AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query) | 161 | public List<Framework.AvatarPickerAvatar> GeneratePickerResults(LLUUID queryID, string query) |
137 | { | 162 | { |
138 | //Do nothing yet | 163 | //Do nothing yet |