use strict;
return 1;

=head1 Name

OSSTag - A Social Tagging Engine

Copyright (c) 2006 Open Source Development Labs, Inc.

-- physical mapping
CREATE TABLE osstag_phymap (
	id int(11) NOT NULL auto_increment,
	phy_pointer varchar(255) NOT NULL,
	PRIMARY KEY  (id)
);


=cut

package osstag_obj_phymap;
use osstag_obj_semmap;

sub new($$)
{
	my $class = shift;
	my $self = {};
	bless $self, $class;

	my ($id, $phy_pointer, $project) = @_;
	$self->{id} = $id;
	$self->{phy_pointer} = $phy_pointer;
	$self->{project} = $project;

	return $self;
}

sub addSemMap($)
{
	my $self = shift;
	my ($semmap) = @_;
	bless $semmap, 'osstag_obj_semmap';
	push @{$self->{semmap}}, $semmap;
}

=head1 License

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License 
version 2 as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

=head1 Version

Version: 0.2

Date:    07-JUN-2006

=head1 Author

Author:  Jan Kechel (jan@kechel.de)

=cut

# the end

