VM_PointStateWrite.cs 298 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 using System; namespace HH_WCS_Standard { public class VM_PointStateWrite : VM_WriteModel { public VM_PointStateWrite(string name) : base(name) { } public override void Clear() { throw new NotImplementedException(); } } }