using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FastReport.Export.Hpgl.Commands { /// /// PU command /// public class PenUp : CommandBase { public PenUp() : base() { Name = "PU"; } } }