diff options
author | dakkar <dakkar@thenautilus.net> | 2013-04-12 19:20:53 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2013-04-12 19:20:53 +0100 |
commit | e3e45e3827fe10225b73ba059c184a5395658069 (patch) | |
tree | 9518bf94a7afdaec831319317a8d1db2133981f0 /lib/GridFiller | |
parent | make objects one-shot (diff) | |
download | qr-builder-master.tar.gz qr-builder-master.tar.bz2 qr-builder-master.zip |
Diffstat (limited to 'lib/GridFiller')
-rw-r--r-- | lib/GridFiller/Chooser.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Chooser/Random.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Chooser/Smarter.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Constants.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Result.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Result/Pango.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Result/Text.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Scaler.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Status.pm | 16 | ||||
-rw-r--r-- | lib/GridFiller/Types.pm | 16 |
10 files changed, 160 insertions, 0 deletions
diff --git a/lib/GridFiller/Chooser.pm b/lib/GridFiller/Chooser.pm index 04e3cc9..51d1040 100644 --- a/lib/GridFiller/Chooser.pm +++ b/lib/GridFiller/Chooser.pm @@ -22,3 +22,19 @@ sub find_place_for { } 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Chooser/Random.pm b/lib/GridFiller/Chooser/Random.pm index f949c4d..940736d 100644 --- a/lib/GridFiller/Chooser/Random.pm +++ b/lib/GridFiller/Chooser/Random.pm @@ -93,3 +93,19 @@ sub _find_in_col { } 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Chooser/Smarter.pm b/lib/GridFiller/Chooser/Smarter.pm index 16ed0b0..5b2b778 100644 --- a/lib/GridFiller/Chooser/Smarter.pm +++ b/lib/GridFiller/Chooser/Smarter.pm @@ -120,3 +120,19 @@ sub _find_in_col { } 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Constants.pm b/lib/GridFiller/Constants.pm index d707782..041b8fd 100644 --- a/lib/GridFiller/Constants.pm +++ b/lib/GridFiller/Constants.pm @@ -28,3 +28,19 @@ readonly_on($BLACK); readonly_on($WHITE); 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Result.pm b/lib/GridFiller/Result.pm index 4ba3736..d82fc06 100644 --- a/lib/GridFiller/Result.pm +++ b/lib/GridFiller/Result.pm @@ -41,3 +41,19 @@ sub reset { } 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Result/Pango.pm b/lib/GridFiller/Result/Pango.pm index 442aa06..5be6482 100644 --- a/lib/GridFiller/Result/Pango.pm +++ b/lib/GridFiller/Result/Pango.pm @@ -289,3 +289,19 @@ after reset => sub { 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Result/Text.pm b/lib/GridFiller/Result/Text.pm index 03e7f8f..5ed1d32 100644 --- a/lib/GridFiller/Result/Text.pm +++ b/lib/GridFiller/Result/Text.pm @@ -136,3 +136,19 @@ after reset => sub { }; 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Scaler.pm b/lib/GridFiller/Scaler.pm index 21d11c9..f6e3337 100644 --- a/lib/GridFiller/Scaler.pm +++ b/lib/GridFiller/Scaler.pm @@ -30,3 +30,19 @@ sub scale { } 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Status.pm b/lib/GridFiller/Status.pm index 65932b8..85a70e7 100644 --- a/lib/GridFiller/Status.pm +++ b/lib/GridFiller/Status.pm @@ -144,3 +144,19 @@ sub to_string { } 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut diff --git a/lib/GridFiller/Types.pm b/lib/GridFiller/Types.pm index 90e094f..4a93a0d 100644 --- a/lib/GridFiller/Types.pm +++ b/lib/GridFiller/Types.pm @@ -39,3 +39,19 @@ coerce FontDescrT, class_type FontOptT, { class => 'Cairo::FontOptions' }; 1; + +__END__ + +=head1 AUTHOR + +Gianni Ceccarelli <dakkar@thenautilus.net> + +=head1 COPYRIGHT AND LICENSE + +This software is copyright (c) 2012 by Gianni Ceccarelli. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, version 3. + +=cut |