using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using FastReport.Utils;
namespace FastReport.Data
{
///
/// Represents the collection of objects.
///
public class ConnectionCollection : FRCollectionBase
{
///
/// Gets or sets a data connection.
///
/// The index of a data connection in this collection.
/// The data connection with specified index.
public DataConnectionBase this[int index]
{
get { return List[index] as DataConnectionBase; }
set { List[index] = value; }
}
///
/// Initializes a new instance of the class with default settings.
///
/// The owner of this collection.
public ConnectionCollection(Base owner) : base(owner)
{
}
}
}