Expose the GroupRecord and it's accessor API

This commit is contained in:
Melanie Thielker
2009-04-16 00:15:57 +00:00
parent c98287249e
commit 7e95783dd3
2 changed files with 16 additions and 9 deletions

View File

@@ -64,14 +64,6 @@ namespace OpenSim.Region.Framework.Interfaces
void LeaveGroupRequest(IClientAPI remoteClient, UUID GroupID);
void EjectGroupMemberRequest(IClientAPI remoteClient, UUID GroupID, UUID EjecteeID);
void InviteGroupRequest(IClientAPI remoteClient, UUID GroupID, UUID InviteeID, UUID RoleID);
/// <summary>
/// Retrieve group profile.
/// </summary>
/// <param name="GroupID"></param>
/// <param name="GroupProfile"></param>
/// <returns>False if group does not exist</returns>
bool GetGroupProfile(UUID GroupID, out GroupProfileData GroupProfile);
GroupRecord GetGroupRecord(UUID GroupID);
}
}