From 0f16d8bcbc84426f0f01dbc540bb6ccf1024d8ad Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 11 Nov 2012 19:02:39 +0000 Subject: [PATCH] Initial volatility3 commit. --- .project | 17 +++++++++++++++++ .pydevproject | 8 ++++++++ volatility/interfaces.py | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 .project create mode 100644 .pydevproject create mode 100644 volatility/interfaces.py diff --git a/.project b/.project new file mode 100644 index 000000000..454d9870b --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + volatility3 + + + + + + org.python.pydev.PyDevBuilder + + + + + + org.python.pydev.pythonNature + + diff --git a/.pydevproject b/.pydevproject new file mode 100644 index 000000000..c46715921 --- /dev/null +++ b/.pydevproject @@ -0,0 +1,8 @@ + + + +/volatility3 + +python 3.0 +python3 + diff --git a/volatility/interfaces.py b/volatility/interfaces.py new file mode 100644 index 000000000..c75785c8f --- /dev/null +++ b/volatility/interfaces.py @@ -0,0 +1,33 @@ +""" +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 +