forked from DomCR/ACadSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
57 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/ACadSharp/IO/Templates/CadViewportEntityControlTemplate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace ACadSharp.IO.Templates | ||
{ | ||
internal class CadViewportEntityControlTemplate : CadTemplate | ||
{ | ||
public List<ulong> EntryHandles { get; } = new List<ulong>(); | ||
|
||
public CadViewportEntityControlTemplate() : base(new VPEntityPlaceholder()) { } | ||
|
||
public override void Build(CadDocumentBuilder builder) | ||
{ | ||
base.Build(builder); | ||
} | ||
|
||
public class VPEntityPlaceholder : CadObject | ||
{ | ||
public override ObjectType ObjectType { get; } | ||
|
||
public override string SubclassMarker { get; } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
src/ACadSharp/IO/Templates/DwgViewportEntityControlTemplate.cs
This file was deleted.
Oops, something went wrong.