started OOing of PC protocol stuff
[spider.git] / perl / Prot.pm
diff --git a/perl/Prot.pm b/perl/Prot.pm
new file mode 100644 (file)
index 0000000..4576196
--- /dev/null
@@ -0,0 +1,18 @@
+#
+# Base class for OO version of all protocol stuff
+#
+
+package Prot;
+
+use strict;
+
+sub new
+{
+       my $pkg = shift;
+       my $self = bless {}, $pkg;
+       return $self;
+}
+
+
+1;
+__END__