242cf50726
* first pass of making Rhino work: more structs, nested types and some generic work * ignoring more types to compile * initial rhino check in. tabs on revit * more fixes? * rerun rhino * more generic fixes * more rhino fixes * add interfaces to structs and explicit interfaces * fix indexers and add exceptions * Compiles! * add more collections and better interface implementations * add static properties on structs * add static methods to structs * Deal with out values and System.Drawing * fmt * fix up Revit to have old properties/methods * rerun revit to be updated
27 lines
838 B
C#
27 lines
838 B
C#
namespace Autodesk.Revit.DB;
|
|
|
|
public partial class KeyBasedTreeEntriesIterator
|
|
: System.Collections.Generic.IEnumerator<Autodesk.Revit.DB.KeyBasedTreeEntry>,
|
|
System.IDisposable,
|
|
System.Collections.IEnumerator
|
|
{
|
|
public KeyBasedTreeEntriesIterator() { }
|
|
|
|
public virtual System.Boolean MoveNext() => throw new System.NotImplementedException();
|
|
|
|
public virtual System.Boolean IsDone() => throw new System.NotImplementedException();
|
|
|
|
public virtual void Reset() => throw new System.NotImplementedException();
|
|
|
|
public virtual void Dispose() => throw new System.NotImplementedException();
|
|
|
|
public virtual Autodesk.Revit.DB.KeyBasedTreeEntry Current
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
public virtual System.Boolean IsValidObject
|
|
{
|
|
get => throw new System.NotImplementedException();
|
|
}
|
|
}
|