1
2class ProcessorMetadata:
3    """
4    ProcessorMetadata
5
6    This contains meta information about the process that generated
7    this processor.  The results of these functions do not
8    impact the pixel processing.
9
10    """
11    def __init__(self):
12        pass
13
14    def getFiles(self):
15        """
16        getFiles()
17
18        Returns a list of file references used internally by this processor
19
20        :return: list of filenames
21        :rtype: list
22        """
23        pass
24
25    def getLooks(self):
26        """
27        getLooks()
28
29        Returns a list of looks used internally by this processor
30
31        :return: list of look names
32        :rtype: list
33        """
34        pass
35