Implement the friends data adaptor

This commit is contained in:
Melanie
2010-02-05 12:31:29 +00:00
parent 0ab8dd61d7
commit b92cb6126d
4 changed files with 25 additions and 8 deletions

View File

@@ -45,7 +45,7 @@ namespace OpenSim.Data
public interface IFriendsData
{
bool Store(FriendsData data);
bool Delete(UUID ownerID, UUID friendID);
FriendsData[] GetFriends(UUID owner);
bool Delete(UUID ownerID, string friend);
FriendsData[] GetFriends(UUID principalID);
}
}