package com.db4o.samples;

// demonstrates inheriting from a Persitent class
public class Individual extends Person
{
	// persistent members have to be declared public
	// if you use the JDK 1.x versions of db4o
	public String firstName;

}
