mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-29 03:09:48 +02:00
19 lines
674 B
Python
19 lines
674 B
Python
from volatility.framework import validity
|
|
|
|
__author__ = 'mike'
|
|
|
|
class Renderer(validity.ValidityRoutines):
|
|
|
|
def __init__(self, options):
|
|
"""Accepts an options object to configure the renderers"""
|
|
#FIXME: Once the config option objects are in place, put the type_check in place
|
|
|
|
@staticmethod
|
|
def get_render_options():
|
|
"""Returns a list of rendering options"""
|
|
raise NotImplementedError("Abstract method get_render_options not implemented.")
|
|
|
|
def render(self, grid):
|
|
"""Takes a grid object and renders it based on the object's preferences"""
|
|
raise NotImplementedError("Abstract method render not implemented.")
|