16 lines
247 B
C#
16 lines
247 B
C#
|
// ConnectBeforeAttribute.cs
|
||
|
//
|
||
|
// Author: Mike Kestner <mkestner@ximian.com>
|
||
|
//
|
||
|
// (C) 2004 Novell, Inc.
|
||
|
|
||
|
namespace GLib {
|
||
|
|
||
|
using System;
|
||
|
|
||
|
public sealed class ConnectBeforeAttribute : Attribute
|
||
|
{
|
||
|
public ConnectBeforeAttribute () {}
|
||
|
}
|
||
|
}
|