summaryrefslogtreecommitdiff
path: root/libexec/makewhatis/OpenBSD
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2011-01-26 15:11:00 +0000
committerMarc Espie <espie@cvs.openbsd.org>2011-01-26 15:11:00 +0000
commit42739d2be98a0b5e7e445b8161285c2f089d01b1 (patch)
tree7b24e423b08046502c596696cc81721c81b37e62 /libexec/makewhatis/OpenBSD
parent9b83840f74d1a3585c4f2522f88eec5a87b8b4e5 (diff)
placeholder for future changes, as discussed with miod@
Diffstat (limited to 'libexec/makewhatis/OpenBSD')
-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;