Files
volatility3/volatility/interfaces.py
T
2012-11-11 19:02:39 +00:00

34 lines
429 B
Python

"""
Created on 11 Nov 2012
@author: mike
"""
class ObjectInterface(object):
"""
classdocs
"""
def __init__(self, profileset, offset, data):
"""
Constructor
"""
def cast(self):
# Properties = [size, layer, offset]
class TransformLayerInterface(object):
"""
classdocs
"""
def __init__(self):
"""
Constructor
"""
def