2003-09-04 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / Mono.GetOptions / ArgumentProcessorAttribute.cs
1 //
2 // ArgumentProcessorAttribute.cs
3 //
4 // Author: Rafael Teixeira (rafaelteixeirabr@hotmail.com)
5 //
6 // (C) 2002 Rafael Teixeira
7 //
8 using System;
9
10 namespace Mono.GetOptions
11 {
12
13         [AttributeUsage(AttributeTargets.Method)]
14         public class ArgumentProcessorAttribute : Attribute
15         {
16                 public ArgumentProcessorAttribute() {}
17         }
18
19 }