RDFStore::Digest::Digestable - implementation of the Digestable RDF API


RDFStore documentation Contained in the RDFStore distribution.

Index


Code Index:

NAME

Top

RDFStore::Digest::Digestable - implementation of the Digestable RDF API

SYNOPSIS

Top

DESCRIPTION

Top

SEE ALSO

Top

Digest(3)

AUTHOR

Top

        Alberto Reggiori <areggiori@webweaving.org>



RDFStore documentation Contained in the RDFStore distribution.

# *
# *     Copyright (c) 2000-2004 Alberto Reggiori <areggiori@webweaving.org>
# *                        Dirk-Willem van Gulik <dirkx@webweaving.org>
# *
# * NOTICE
# *
# * This product is distributed under a BSD/ASF like license as described in the 'LICENSE'
# * file you should have received together with this source code. If you did not get a
# * a copy of such a license agreement you can pick up one at:
# *
# *     http://rdfstore.sourceforge.net/LICENSE
# *
# * Changes:
# *     version 0.1 - Wed May 23 18:16:29 CEST 2001
# *

package RDFStore::Digest::Digestable;
{
use vars qw ($VERSION);
use strict;

$VERSION = '0.1';

sub new {
        bless {} , shift;
};

sub getDigest {
};

1;
};

__END__