-
Notifications
You must be signed in to change notification settings - Fork 6
/
MNI.pm
28 lines (25 loc) · 915 Bytes
/
MNI.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# ------------------------------ MNI Header ----------------------------------
#@NAME : MNI
#@DESCRIPTION: Dummy module used to give the whole MNI Perl Library a
# version number.
#@EXPORT :
#@EXPORT_OK :
#@EXPORT_TAGS:
#@USES :
#@REQUIRES :
#@CREATED : 1997/05/13, Greg Ward
#@MODIFIED :
#@VERSION : $Id: MNI.pm,v 1.5 2007-09-17 16:24:57 claude Exp $
#@COPYRIGHT : Copyright (c) 1997 by Gregory P. Ward, McConnell Brain Imaging
# Centre, Montreal Neurological Institute, McGill University.
#
# This file is part of the MNI Perl Library. It is free
# software, and may be distributed under the same terms
# as Perl itself.
#-----------------------------------------------------------------------------
package MNI;
use strict;
require 5.002;
require Exporter;
@MNI::ISA = ('Exporter');
$MNI::VERSION = '0.08';