1
# -*- coding: utf-8 -*-
3
Created on Jun 30, 2010
9
class ProfileCollection(object):
11
The ProfileCollection holds the different profiles WMMapper manages
16
self.__profileMap = {}
19
def put(self, profile):
20
self.__profileMap[profile.get_name()] = profile
24
return self.__profileMap[name]