The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package IUP::GL::Separator;
use strict;
use warnings;
use base 'IUP::GL';
use IUP::Internal::LibraryIup;

sub _create_element {
  return IUP::Internal::LibraryIup::_IupGLSeparator;
}

1;