summaryrefslogtreecommitdiff
path: root/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm')
-rw-r--r--libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm38
1 files changed, 38 insertions, 0 deletions
diff --git a/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm b/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm
new file mode 100644
index 00000000000..a88023e70fd
--- /dev/null
+++ b/libexec/makewhatis/OpenBSD/Makewhatis/Subject.pm
@@ -0,0 +1,38 @@
+# ex:ts=8 sw=4:
+# $OpenBSD: Subject.pm,v 1.1 2011/01/26 15:10:59 espie Exp $
+# Copyright (c) 2010 Marc Espie <espie@openbsd.org>
+#
+# Permission to use, copy, modify, and distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+use strict;
+use warnings;
+
+package OpenBSD::Makewhatis::SubjectHandler;
+
+sub new
+{
+ my $class = shift;
+ bless {}, $class;
+}
+
+sub add
+{
+}
+
+package OpenBSD::MakeWhatis::Subject;
+
+sub new
+{
+}
+
+1;