using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FastReport.Export.Hpgl.Commands { /// /// CT command /// public class ChordTolerance : CommandBase { public ChordTolerance(int n) : base() { Name = "CT"; Parameters.Add(n); } } }