21 lines
468 B
Python
21 lines
468 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file RawInput.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \version 0.1
|
|
# \date 12 sept. 2018
|
|
#
|
|
# TODO details
|
|
|
|
from ld2dap.core import Input
|
|
|
|
class RawInput(Input):
|
|
def __init__(self, data, metadata):
|
|
super().__init__(self.__class__.__name__)
|
|
self.data = data
|
|
self.metadata = metadata
|
|
|
|
def _process(self, data, metadata):
|
|
return self.data, self.metadata
|