mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 21:24:00 +01:00
8 lines
266 B
Python
8 lines
266 B
Python
from abc import ABCMeta, abstractmethod
|
|
class formatHandlerBase(object, metaclass=ABCMeta):
|
|
def __init__(self,TexOps, commands=[]):
|
|
self.TexOps=TexOps
|
|
self.Commands=commands
|
|
@abstractmethod
|
|
def readFromTable(self,table):
|
|
raise NotImplementedError() |