summaryrefslogtreecommitdiffstats
path: root/cobbler/serializable.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2006-05-05 16:32:16 -0400
committerJim Meyering <jim@meyering.net>2006-05-05 16:32:16 -0400
commit297525dcb3c500d086bb4a5006a5839d98f8522b (patch)
tree9b2fc55d3c63df1e9c0928105c5b848882f52c95 /cobbler/serializable.py
parent036eb874ffbaf70236427ebe7c10fb883706e291 (diff)
downloadthird_party-cobbler-297525dcb3c500d086bb4a5006a5839d98f8522b.tar.gz
third_party-cobbler-297525dcb3c500d086bb4a5006a5839d98f8522b.tar.xz
third_party-cobbler-297525dcb3c500d086bb4a5006a5839d98f8522b.zip
Interim refactoring commit
Diffstat (limited to 'cobbler/serializable.py')
-rw-r--r--cobbler/serializable.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/cobbler/serializable.py b/cobbler/serializable.py
new file mode 100644
index 0000000..e03b88f
--- /dev/null
+++ b/cobbler/serializable.py
@@ -0,0 +1,12 @@
+
+class Serializable:
+
+ def filename():
+ return None
+
+ def from_datastruct(datastruct):
+ raise "not implemented"
+
+ def to_datastruct():
+ raise "not implemented"
+