| from abc import abstractmethod | |
| class Meter(object): | |
| def __init__(self, **kwargs): | |
| pass | |
| def Reset(self): | |
| pass | |
| def Add(self): | |
| pass | |
| def Compute(self): | |
| pass | |
| from abc import abstractmethod | |
| class Meter(object): | |
| def __init__(self, **kwargs): | |
| pass | |
| def Reset(self): | |
| pass | |
| def Add(self): | |
| pass | |
| def Compute(self): | |
| pass | |