# # This file is part of pysmi software. # # Copyright (c) 2015-2019, Ilya Etingof # License: http://snmplabs.com/pysmi/license.html # class AbstractParser(object): def reset(self): raise NotImplementedError() def parse(self, data, **kwargs): raise NotImplementedError()