aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/IFriendsData.cs
diff options
context:
space:
mode:
authorMelanie2010-02-05 12:31:29 +0000
committerMelanie2010-02-05 12:31:29 +0000
commitb92cb6126d8ca59121468fce44dc7b4c3b805181 (patch)
tree616a8da65aa49fe2821b9b1c4898ff3ada87f565 /OpenSim/Data/IFriendsData.cs
parentFinally cutting the gordian knot. Friends needs to be both a module and a (diff)
downloadopensim-SC_OLD-b92cb6126d8ca59121468fce44dc7b4c3b805181.zip
opensim-SC_OLD-b92cb6126d8ca59121468fce44dc7b4c3b805181.tar.gz
opensim-SC_OLD-b92cb6126d8ca59121468fce44dc7b4c3b805181.tar.bz2
opensim-SC_OLD-b92cb6126d8ca59121468fce44dc7b4c3b805181.tar.xz
Implement the friends data adaptor
Diffstat (limited to 'OpenSim/Data/IFriendsData.cs')
-rw-r--r--OpenSim/Data/IFriendsData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/IFriendsData.cs b/OpenSim/Data/IFriendsData.cs
index 7618976..1f1a031 100644
--- a/OpenSim/Data/IFriendsData.cs
+++ b/OpenSim/Data/IFriendsData.cs
@@ -45,7 +45,7 @@ namespace OpenSim.Data
45 public interface IFriendsData 45 public interface IFriendsData
46 { 46 {
47 bool Store(FriendsData data); 47 bool Store(FriendsData data);
48 bool Delete(UUID ownerID, UUID friendID); 48 bool Delete(UUID ownerID, string friend);
49 FriendsData[] GetFriends(UUID owner); 49 FriendsData[] GetFriends(UUID principalID);
50 } 50 }
51} 51}