From 4e97ac63574a6422ee7cda3efb9589c04ed4b339 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Mon, 30 Sep 2013 13:54:29 +1300 Subject: [PATCH] Skeletal NCIP::Item --- lib/NCIP/Item.pm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/NCIP/Item.pm diff --git a/lib/NCIP/Item.pm b/lib/NCIP/Item.pm new file mode 100644 index 0000000..3d9105f --- /dev/null +++ b/lib/NCIP/Item.pm @@ -0,0 +1,8 @@ +package NCIP::Item; + +use base qw(Class::Accessor); + +# Make accessors for the ones that makes sense +NCIP::Item->mk_accessors(qw(itemid)); + +1; -- 2.43.2