#---------------------------------------------------------------
# ____                   _ _         ____  _
#|  _ \ ___  _   _  __ _| | |_ _   _/ ___|| |__   __ _ _ __ ___
#| |_) / _ \| | | |/ _` | | __| | | \___ \| '_ \ / _` | '__/ _ \
#|  _ < (_) | |_| | (_| | | |_| |_| |___) | | | | (_| | | |  __/
#|_| \_\___/ \__, |\__,_|_|\__|\__, |____/|_| |_|\__,_|_|  \___|
#            |___/             |___/
#
# Copyright (C) 2008 RoyaltyShare, Inc.      All Rights Reserved
#---------------------------------------------------------------

package Common::File::Latin1;
use strict;

use lib '/app/tools/common/lib';
use Common::UTF8;

use base 'Common::File::Base';

sub _encoding { Common::UTF8::kEncodingLatin1 }

sub isValid {
    my $self = shift;

    # !!! We can probably make this slightly more intelligent...
    # !!! Let's look at the first few bytes and make sure we don't see any wacky characters.
    #
    return 1;
}

sub _getHeaderBytes {
    my $self = shift;
    #
    # There are none.

    my @empty;
    return @empty;
}

###
1;    # Play nicely.
###
