mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
34 lines
429 B
Python
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
|
|
|