RDFStore::VirtualModel - implementation of the VirtualModel RDF API


RDFStore documentation Contained in the RDFStore distribution.

Index


Code Index:

NAME

Top

RDFStore::VirtualModel - implementation of the VirtualModel RDF API

SYNOPSIS

Top

	use RDFStore::VirtualModel;
        my $virtual = new RDFStore::VirtualModel( Name => 'triples' );

DESCRIPTION

Top

An RDFStore::VirtualModel implementation using RDFStore::Model and Digested URIs.

SEE ALSO

Top

RDFStore::Model(3) Digest(3) and RDFStore::SchemaModel(3)

AUTHOR

Top

	Alberto Reggiori <areggiori@webweaving.org>



RDFStore documentation Contained in the RDFStore distribution.

# *
# *     Copyright (c) 2000-2006 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
# *

package RDFStore::VirtualModel;
{
use vars qw ($VERSION);
use strict;
 
$VERSION = '0.4';

use Carp;
use RDFStore::Model;

@RDFStore::VirtualModel::ISA = qw( RDFStore::Model );

sub new {
	my ($pkg) = shift;
	bless $pkg->SUPER::new(@_), $pkg;
};

sub getGroundModel {
};

1;
};

__END__