aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQLMapper/MySQLDataReader.cs
blob: 9fd50f6d0ab993b29d74f2d04e84059ce548fa7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using OpenSim.Framework.Data.Base;

namespace OpenSim.Framework.Data.MySQLMapper
{
    public class MySQLDataReader : OpenSimDataReader
    {
        public MySQLDataReader(IDataReader source) : base(source)
        {
        }
    }
}