MapImport.cs 639 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace FastReport.Map.Import
  5. {
  6. internal class MapImport : Base
  7. {
  8. #region Properties
  9. public string Filter
  10. {
  11. get { return GetFilter(); }
  12. }
  13. #endregion // Properties
  14. #region Protected Methods
  15. protected virtual string GetFilter()
  16. {
  17. return "";
  18. }
  19. #endregion // Protected Methods
  20. #region Public Methods
  21. public virtual void ImportMap(MapObject map, MapLayer layer, string filename)
  22. {
  23. }
  24. #endregion // Public Methods
  25. }
  26. }