mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-03 20:53:59 +01:00
10 lines
288 B
Python
10 lines
288 B
Python
from abc import ABCMeta
|
|
from abc import abstractmethod
|
|
class formatHandlerBase(object):
|
|
__metaclass__ = ABCMeta
|
|
def __init__(self,TexOps, commands=[]):
|
|
self.TexOps=TexOps
|
|
self.commands=commands
|
|
@abstractmethod
|
|
def readFromTable(self,table):
|
|
raise NotImplementedError() |