12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Data;
- using System.Collections;
- namespace FastReport.Data
- {
- /// <summary>
- /// Represents a datasource based on <b>DataView</b> class.
- /// </summary>
- /// <remarks>
- /// This class is used to support FastReport.Net infrastructure, do not use it directly.
- /// If you want to use data from <b>DataView</b> object, call the
- /// <see cref="FastReport.Report.RegisterData(DataView, string)"/> method of the <b>Report</b>.
- /// </remarks>
- public class SliceCubeSource : CubeSourceBase
- {
- #region Properties
- #endregion
- #region Private Methods
- #endregion
- #region Protected Methods
- #endregion
- #region Public Methods
- #endregion
- }
- }
|