aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.DB4o/DB4oUserData.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-12-30 23:29:44 +0000
committerTeravus Ovares2007-12-30 23:29:44 +0000
commit57a11325851b92e2201b0e727596b4920009246f (patch)
tree0b4b2450189c84cc3c618a867711d31d3c69c8ba /OpenSim/Framework/Data.DB4o/DB4oUserData.cs
parentComments + fix = in theory stand alone script server + "RemoteSevrver" Script... (diff)
downloadopensim-SC_OLD-57a11325851b92e2201b0e727596b4920009246f.zip
opensim-SC_OLD-57a11325851b92e2201b0e727596b4920009246f.tar.gz
opensim-SC_OLD-57a11325851b92e2201b0e727596b4920009246f.tar.bz2
opensim-SC_OLD-57a11325851b92e2201b0e727596b4920009246f.tar.xz
* Fixed References in Prebuild so the project compiles
* Added Friends List methods to IUserData interface * Created Stub friendslist Database Methods
Diffstat (limited to 'OpenSim/Framework/Data.DB4o/DB4oUserData.cs')
-rw-r--r--OpenSim/Framework/Data.DB4o/DB4oUserData.cs25
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