using System;
using System.Collections.Generic;
namespace Python.Runtime
{
public interface IPythonBaseTypeProvider
{
///
/// Get Python types, that should be presented to Python as the base types
/// for the specified .NET type.
///
IEnumerable GetBaseTypes(Type type, IList existingBases);
}
}