]> wagnertech.de Git - mfinanz.git/blobdiff - SL/Template/PlainText.pm
SL/Template.pm in eine Datei pro Package aufgeteilt.
[mfinanz.git] / SL / Template / PlainText.pm
diff --git a/SL/Template/PlainText.pm b/SL/Template/PlainText.pm
new file mode 100644 (file)
index 0000000..d5a734f
--- /dev/null
@@ -0,0 +1,30 @@
+package SL::Template::PlainText;
+
+use SL::Template::LaTeX;
+
+use vars qw(@ISA);
+
+@ISA = qw(SL::Template::LaTeX);
+
+use strict;
+
+sub new {
+  my $type = shift;
+
+  return $type->SUPER::new(@_);
+}
+
+sub format_string {
+  my ($self, $variable) = @_;
+
+  return $variable;
+}
+
+sub get_mime_type {
+  return "text/plain";
+}
+
+sub parse {
+}
+
+1;