comparison cpt_psm_plotter/lib/CPT/Parameter/Option/Generic.pm @ 0:54c7a3ea81e2 draft

Uploaded
author cpt
date Tue, 05 Jul 2022 05:40:36 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:54c7a3ea81e2
1 package CPT::Parameter::Option::Generic;
2 use Moose;
3 with 'CPT::Parameter::Option';
4
5
6 sub getopt_format {
7 return '=s';
8 }
9 no Moose;
10 1;
11
12 __END__
13
14 =pod
15
16 =encoding UTF-8
17
18 =head1 NAME
19
20 CPT::Parameter::Option::Generic
21
22 =head1 VERSION
23
24 version 1.99.4
25
26 =head2 getopt_format
27
28 Returns the format character for a given CPT::Parameter::* type
29
30 =head1 AUTHOR
31
32 Eric Rasche <rasche.eric@yandex.ru>
33
34 =head1 COPYRIGHT AND LICENSE
35
36 This software is Copyright (c) 2014 by Eric Rasche.
37
38 This is free software, licensed under:
39
40 The GNU General Public License, Version 3, June 2007
41
42 =cut