1b31dc18e8
* fixes * Generate empty constructors for testing
35 lines
1.3 KiB
C#
35 lines
1.3 KiB
C#
namespace Autodesk.Revit.DB.Electrical;
|
|
|
|
public partial class DistributionSysTypeSet : Autodesk.Revit.DB.APIObject, System.Collections.IEnumerable
|
|
{
|
|
public DistributionSysTypeSet() { }
|
|
|
|
public virtual void Clear() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Electrical.DistributionSysTypeSetIterator ForwardIterator() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.Electrical.DistributionSysTypeSetIterator ReverseIterator() =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Collections.IEnumerator GetEnumerator() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean Contains(Autodesk.Revit.DB.Electrical.DistributionSysType item) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean Insert(Autodesk.Revit.DB.Electrical.DistributionSysType item) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Int32 Erase(Autodesk.Revit.DB.Electrical.DistributionSysType item) =>
|
|
throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsEmpty
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.Int32 Size
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|