19 lines
310 B
Python
19 lines
310 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
|
||
|
class Ticker(object):
|
||
|
"""
|
||
|
Base class for ticker implementations.
|
||
|
"""
|
||
|
@property
|
||
|
def ticks(self):
|
||
|
raise NotImplementedError
|
||
|
|
||
|
@property
|
||
|
def min(self):
|
||
|
raise NotImplementedError
|
||
|
|
||
|
@property
|
||
|
def max(self):
|
||
|
raise NotImplementedError
|