Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

37 lines
969 B
C#

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 ()
{
}
}
}