diff options
author | Melanie Thielker | 2009-04-16 00:15:57 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-04-16 00:15:57 +0000 |
commit | 7e95783dd3fbeb7d93885e85606adc74d73e567e (patch) | |
tree | 1d9f3695064f9c2d9d063a8c92009c88a9a04475 /OpenSim/Region | |
parent | Add the XML manifests needed to get the new style modules to load. (diff) | |
download | opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.zip opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.tar.gz opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.tar.bz2 opensim-SC_OLD-7e95783dd3fbeb7d93885e85606adc74d73e567e.tar.xz |
Expose the GroupRecord and it's accessor API
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs index 85b8cac..6935924 100644 --- a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | |||
@@ -64,14 +64,6 @@ namespace OpenSim.Region.Framework.Interfaces | |||
64 | void LeaveGroupRequest(IClientAPI remoteClient, UUID GroupID); | 64 | void LeaveGroupRequest(IClientAPI remoteClient, UUID GroupID); |
65 | void EjectGroupMemberRequest(IClientAPI remoteClient, UUID GroupID, UUID EjecteeID); | 65 | void EjectGroupMemberRequest(IClientAPI remoteClient, UUID GroupID, UUID EjecteeID); |
66 | void InviteGroupRequest(IClientAPI remoteClient, UUID GroupID, UUID InviteeID, UUID RoleID); | 66 | void InviteGroupRequest(IClientAPI remoteClient, UUID GroupID, UUID InviteeID, UUID RoleID); |
67 | 67 | GroupRecord GetGroupRecord(UUID GroupID); | |
68 | |||
69 | /// <summary> | ||
70 | /// Retrieve group profile. | ||
71 | /// </summary> | ||
72 | /// <param name="GroupID"></param> | ||
73 | /// <param name="GroupProfile"></param> | ||
74 | /// <returns>False if group does not exist</returns> | ||
75 | bool GetGroupProfile(UUID GroupID, out GroupProfileData GroupProfile); | ||
76 | } | 68 | } |
77 | } | 69 | } |