Files
Adam Hathcock 1b31dc18e8 Generate empty constructors for testing (#27)
* fixes

* Generate empty constructors for testing
2024-07-01 14:58:01 +00:00

40 lines
1.5 KiB
C#

namespace Autodesk.Revit.DB;
public partial class DirectShapeLibrary : System.IDisposable
{
public DirectShapeLibrary() { }
public static Autodesk.Revit.DB.DirectShapeLibrary GetDirectShapeLibrary(Autodesk.Revit.DB.Document ADoc) =>
throw new System.NotImplementedException();
public virtual void AddDefinition(
System.String id,
System.Collections.Generic.IList<Autodesk.Revit.DB.GeometryObject> GNodes
) => throw new System.NotImplementedException();
public virtual void AddDefinition(System.String id, Autodesk.Revit.DB.GeometryObject GNode) =>
throw new System.NotImplementedException();
public virtual void AddDefinitionType(System.String id, Autodesk.Revit.DB.ElementId typeId) =>
throw new System.NotImplementedException();
public virtual System.Collections.Generic.IList<Autodesk.Revit.DB.GeometryObject> FindDefinition(System.String id) =>
throw new System.NotImplementedException();
public virtual Autodesk.Revit.DB.ElementId FindDefinitionType(System.String id) =>
throw new System.NotImplementedException();
public virtual System.Boolean Contains(System.String id) => throw new System.NotImplementedException();
public virtual System.Boolean ContainsType(System.String name) => throw new System.NotImplementedException();
public virtual void Reset() => throw new System.NotImplementedException();
public virtual void Dispose() => throw new System.NotImplementedException();
public virtual System.Boolean IsValidObject
{
get => throw new System.NotImplementedException();
}
}