2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleRowUpdatingEventHandler.cs
1 //
2 // OracleRowUpdatingEventHandler.cs
3 //
4 // Part of the Mono class libraries at
5 // mcs/class/System.Data.OracleClient/System.Data.OracleClient
6 //
7 // Assembly: System.Data.OracleClient.dll
8 // Namespace: System.Data.OracleClient
9 //
10 // Author: Tim Coleman <tim@timcoleman.com>
11 //
12 // Parts derived from System.Data.SqlClient.SqlRowUpdatingEventHandler
13 // Authors:
14 //      Rodrigo Moya (rodrigo@ximian.com)
15 //      Daniel Morgan (danmorg@sc.rr.com)
16 //
17 // (C) Ximian, Inc 2002
18 // Copyright (C) Tim Coleman, 2003
19 //
20 // Licensed under the MIT/X11 License.
21 //
22
23 using System;
24
25 namespace System.Data.OracleClient {
26         public delegate void OracleRowUpdatingEventHandler(object sender, OracleRowUpdatingEventArgs e);
27 }