]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DBase/Log/Html.pm
[project @ 2000-05-01 23:28:02 by doogie]
[debbugs.git] / Debbugs / DBase / Log / Html.pm
diff --git a/Debbugs/DBase/Log/Html.pm b/Debbugs/DBase/Log/Html.pm
new file mode 100644 (file)
index 0000000..b0eca6b
--- /dev/null
@@ -0,0 +1,25 @@
+# TODO: Implement 'stale' checks, so that there is no need to explicitly
+#      write out a record, before closing.
+
+package Debbugs::DBase::Log::Html;
+
+use strict;
+
+BEGIN {
+       Debbugs::DBase::Log::Register("\6", "Html", "Debbugs::DBase::Log::Html");
+}
+
+
+sub new
+{
+    my $self  = {};
+    $self->{TYPE}      = "Html";
+    $self->{MSG}       = shift;
+    bless ($self);
+    return $self;
+}
+
+END { }       # module clean-up code here (global destructor)
+
+
+1;