CodeGen.pm | CodeGen.pm | |||
---|---|---|---|---|
package Glib::CodeGen; | package Glib::CodeGen; | |||
use strict; | use strict; | |||
use warnings; | use warnings; | |||
use Carp; | use Carp; | |||
use IO::File; | use IO::File; | |||
our $VERSION = '1.301'; | our $VERSION = '1.302'; | |||
# type handlers should look like this: | # type handlers should look like this: | |||
# sub gen_foo_stuff { | # sub gen_foo_stuff { | |||
# my ($typemacro, $classname, $base, $package) = @_; | # my ($typemacro, $classname, $base, $package) = @_; | |||
# ... | # ... | |||
# } | # } | |||
# | # | |||
# DO NOT manipulate this data structure directly. Use add_type_handler(). | # DO NOT manipulate this data structure directly. Use add_type_handler(). | |||
my %type_handler = ( | my %type_handler = ( | |||
GEnum => \&gen_enum_stuff, | GEnum => \&gen_enum_stuff, | |||
skipping to change at line 601 | skipping to change at line 601 | |||
GInterfaces are mostly just ignored. | GInterfaces are mostly just ignored. | |||
The code is ugly. | The code is ugly. | |||
=head1 AUTHOR | =head1 AUTHOR | |||
muppet <scott at asofyet dot org> | muppet <scott at asofyet dot org> | |||
=head1 COPYRIGHT | =head1 COPYRIGHT | |||
Copyright (C) 2003-2005 by the gtk2-perl team (see the file AUTHORS for the | Copyright (C) 2003-2005, 2013 by the gtk2-perl team (see the file AUTHORS f | |||
full list) | or | |||
the full list) | ||||
This library is free software; you can redistribute it and/or modify it und er | This library is free software; you can redistribute it and/or modify it und er | |||
the terms of the GNU Library General Public License as published by the Fre e | the terms of the GNU Library General Public License as published by the Fre e | |||
Software Foundation; either version 2.1 of the License, or (at your option) | Software Foundation; either version 2.1 of the License, or (at your option) | |||
any later version. | any later version. | |||
This library is distributed in the hope that it will be useful, but WITHOUT | This library is distributed in the hope that it will be useful, but WITHOUT | |||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNE SS | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNE SS | |||
FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for | FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for | |||
more details. | more details. | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 4 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |