37 lines
969 B
C#
Raw Normal View History

namespace Db4objects.Db4o
{
public interface IObjectContainer
{
System.Collections.IList Query ();
System.Collections.Generic.IList<Extent> Query<Extent> (System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar);
}
}
namespace Db4objects.Db4o.Internal
{
public abstract class ObjectContainerBase
{
public System.Collections.IList Query ()
{
return null;
}
public System.Collections.Generic.IList<Extent> Query<Extent>(System.Collections.Generic.IList<Extent> foo, System.Collections.Generic.IList<Extent> bar)
{
return null;
}
}
public abstract class ExternalObjectContainer : ObjectContainerBase, IObjectContainer
{
}
class M
{
public static void Main ()
{
}
}
}