1
2class ColorSpaceTransform:
3    """
4    ColorSpaceTransform
5    """
6    def __init__(self):
7        pass
8
9    def getSrc(self):
10        """
11        getSrc()
12
13        Returns the name of the source ColorSpace in this transform.
14
15        :return: ColorSpace
16        :rtype: string
17        """
18        pass
19
20    def setSrc(self, srcname):
21        """
22        setSrc(srcname)
23
24        Sets the source ColorSpace in this transform.
25
26        :param str: source ColorSpace
27        :type str: string
28        """
29        pass
30
31    def getDst(self):
32        """
33        getDst()
34
35        Returns the name of the destination ColorSpace in this transform.
36
37        :return: ColorSpace
38        :rtype: string
39        """
40        pass
41
42    def setDst(self, dstname):
43        """
44        setDst(dstname)
45
46        Sets the destination ColorSpace in this transform.
47
48        :param str: destination ColorSpace
49        :type str: string
50        """
51        pass
52