diff options
author | Melanie Thielker | 2009-05-12 14:59:11 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-12 14:59:11 +0000 |
commit | 1b7d0a6c93eb4a056d39b9cc708283086f8e8bf8 (patch) | |
tree | def2701b4586ed0f922214f4ff36265b4d20062d /OpenSim/Region/Framework | |
parent | fixing SocketException when IP address cannot be resolved (diff) | |
download | opensim-SC_OLD-1b7d0a6c93eb4a056d39b9cc708283086f8e8bf8.zip opensim-SC_OLD-1b7d0a6c93eb4a056d39b9cc708283086f8e8bf8.tar.gz opensim-SC_OLD-1b7d0a6c93eb4a056d39b9cc708283086f8e8bf8.tar.bz2 opensim-SC_OLD-1b7d0a6c93eb4a056d39b9cc708283086f8e8bf8.tar.xz |
Paving the way for syncing group permissions across a grid
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs index 6935924..8183828 100644 --- a/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IGroupsModule.cs | |||
@@ -32,10 +32,12 @@ using OpenSim.Framework; | |||
32 | namespace OpenSim.Region.Framework.Interfaces | 32 | namespace OpenSim.Region.Framework.Interfaces |
33 | { | 33 | { |
34 | public delegate void NewGroupNotice(UUID groupID, UUID noticeID); | 34 | public delegate void NewGroupNotice(UUID groupID, UUID noticeID); |
35 | public delegate void GroupChange(UUID groupID); | ||
35 | 36 | ||
36 | public interface IGroupsModule | 37 | public interface IGroupsModule |
37 | { | 38 | { |
38 | event NewGroupNotice OnNewGroupNotice; | 39 | event NewGroupNotice OnNewGroupNotice; |
40 | event GroupChange OnGroupChange; | ||
39 | 41 | ||
40 | void ActivateGroup(IClientAPI remoteClient, UUID groupID); | 42 | void ActivateGroup(IClientAPI remoteClient, UUID groupID); |
41 | List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID); | 43 | List<GroupTitlesData> GroupTitlesRequest(IClientAPI remoteClient, UUID groupID); |