Files
mayan-edms/mayan/apps/converter/backends/__init__.py
2015-06-05 03:35:07 -04:00

17 lines
384 B
Python

from __future__ import unicode_literals
class ConverterBase(object):
"""
Base class that all backend classes must inherit
"""
def convert(self, input_data, ):
raise NotImplementedError()
def transform(self, input_data, transformations):
raise NotImplementedError()
def get_page_count(self, input_data):
raise NotImplementedError()