| RDFStore documentation | Contained in the RDFStore distribution. |
RDFStore::VirtualModel - implementation of the VirtualModel RDF API
use RDFStore::VirtualModel;
my $virtual = new RDFStore::VirtualModel( Name => 'triples' );
An RDFStore::VirtualModel implementation using RDFStore::Model and Digested URIs.
RDFStore::Model(3) Digest(3) and RDFStore::SchemaModel(3)
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__