Package miopia :: Package analyzer :: Package counter :: Module CompositeAuxiliaryCounter
[hide private]
[frames] | no frames]

Source Code for Module miopia.analyzer.counter.CompositeAuxiliaryCounter

 1  ''' 
 2  Created on 06/03/2014 
 3   
 4  @author: david.vilares 
 5  ''' 
 6   
 7  from miopia.analyzer.counter.Counter import Counter 
 8   
9 -class CompositeAuxiliaryCounter(Counter):
10 ''' 11 This class only provides support for some operations that a L{CompositeAdapter} needs. It does not count actually anything. 12 ''' 13 14
15 - def __init__(self,ftc):
16 ''' 17 Constructor 18 ''' 19 super(CompositeAuxiliaryCounter,self).__init__(ftc)
20
21 - def _count(self):
22 raise NotImplementedError
23