LIBOMV-236 Cleans up GroupManager class:

* Documents Event Delegates
* Removes Transaction viewing methods and packets due to deprecated protocol packets
* Removes GroupProfile struct since it was an exact duplicate of the Group struct
* Cleans up ToString() override in AgentManager InstantMessage struct
* Updates GroupManager example to use Group struct vs removed GroupProfile struct

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2003 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2008-07-26 05:38:30 +00:00
parent 293f75f4a7
commit e000e18243
3 changed files with 58 additions and 178 deletions

View File

@@ -15,7 +15,7 @@ namespace groupmanager
{
Group Group;
GridClient Client;
GroupProfile Profile = new GroupProfile();
Group Profile = new Group();
Dictionary<UUID, GroupMember> Members = new Dictionary<UUID,GroupMember>();
Dictionary<UUID, GroupTitle> Titles = new Dictionary<UUID,GroupTitle>();
Dictionary<UUID, GroupMemberData> MemberData = new Dictionary<UUID, GroupMemberData>();
@@ -68,7 +68,7 @@ namespace groupmanager
Client.Avatars.OnAvatarNames -= AvatarNamesCallback;
}
private void GroupProfileHandler(GroupProfile profile)
private void GroupProfileHandler(Group profile)
{
Profile = profile;