New test.
[mono.git] / mcs / class / System.Transactions / System.Transactions / ISimpleTransactionSuperior.cs
1 //
2 // ISimpleTransactionSuperior.cs
3 //
4 // Author:
5 //      Atsushi Enomoto  <atsushi@ximian.com>
6 //
7 // (C)2005 Novell Inc,
8 //
9
10 #if NET_2_0
11
12 namespace System.Transactions
13 {
14         public interface ISimpleTransactionSuperior : ITransactionPromoter
15         {
16                 void Rollback ();
17         }
18 }
19
20 #endif