Initial volatility3 commit.

This commit is contained in:
Mike Auty
2012-11-11 19:02:39 +00:00
commit 0f16d8bcbc
3 changed files with 58 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>volatility3</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.python.pydev.PyDevBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.python.pydev.pythonNature</nature>
</natures>
</projectDescription>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/volatility3</path>
</pydev_pathproperty>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 3.0</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python3</pydev_property>
</pydev_project>
+33
View File
@@ -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