using System; using System.Collections.Generic; using System.Text; namespace BarcodeLib.Symbologies { /// /// Blank encoding template /// Written by: Brad Barnhill /// class Blank: BarcodeCommon, IBarcode { #region IBarcode Members public string Encoded_Value { get { throw new NotImplementedException(); } } #endregion } }