SliceCubeSource.cs 810 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Data;
  5. using System.Collections;
  6. namespace FastReport.Data
  7. {
  8. /// <summary>
  9. /// Represents a datasource based on <b>DataView</b> class.
  10. /// </summary>
  11. /// <remarks>
  12. /// This class is used to support FastReport.Net infrastructure, do not use it directly.
  13. /// If you want to use data from <b>DataView</b> object, call the
  14. /// <see cref="FastReport.Report.RegisterData(DataView, string)"/> method of the <b>Report</b>.
  15. /// </remarks>
  16. public class SliceCubeSource : CubeSourceBase
  17. {
  18. #region Properties
  19. #endregion
  20. #region Private Methods
  21. #endregion
  22. #region Protected Methods
  23. #endregion
  24. #region Public Methods
  25. #endregion
  26. }
  27. }