22 lines
470 B
Python
22 lines
470 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
# \file RawOutput.py
|
|
# \brief TODO
|
|
# \author Florent Guiotte <florent.guiotte@gmail.com>
|
|
# \version 0.1
|
|
# \date 13 avril 2018
|
|
#
|
|
# TODO details
|
|
|
|
from ld2dap.core import Output
|
|
|
|
class RawOutput(Output):
|
|
def __init__(self):
|
|
super().__init__(self.__class__.__name__)
|
|
self.data = None
|
|
self.metadata = None
|
|
|
|
def _process(self, data, metadata):
|
|
self.data = data
|
|
self.metadata = metadata
|