Geo::Direction::Name::Spec::Bagua - Used by Geo::Direction::Name::Spec::Chinese: Real specification class of Bagua


Geo-Direction-Name-Spec-Chinese documentation Contained in the Geo-Direction-Name-Spec-Chinese distribution.

Index


Code Index:

NAME

Top

Geo::Direction::Name::Spec::Bagua - Used by Geo::Direction::Name::Spec::Chinese: Real specification class of Bagua

OVERRIDE / INTERNAL METHOD

Top

* devide_num
* allowed_dev
* default_dev
* default_locale

AUTHOR

Top

OHTSUKA Ko-hei <nene@kokogiko.net>

SEE ALSO

Top

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


Geo-Direction-Name-Spec-Chinese documentation Contained in the Geo-Direction-Name-Spec-Chinese distribution.

package Geo::Direction::Name::Spec::Bagua;

use warnings;
use strict;
use Carp;

use version; our $VERSION = qv('0.0.1');
use base qw(Geo::Direction::Name::Spec);

BEGIN
{
    if ( $] >= 5.006 )
    {
        require utf8; import utf8;
    }
}

sub devide_num { 8 }

sub allowed_dev { qw(8) }

sub default_dev { 8 }

sub default_locale { "zh_CN" }

1;
__END__