Fix bug while executing 'Exit Function'
[mono.git] / mcs / mbas / defaultparserattribute.cs
1 //
2 // DefaultParserAttribute.cs: Marks a parser as the default one
3 //                                                for file extensions not matched against the map
4 //
5 // Author: A Rafael D Teixeira (rafaelteixeirabr@hotmail.com)
6 //
7 // Licensed under the terms of the GNU GPL
8 //
9 // Copyright (C) 2003 Ximian, Inc.
10 //
11
12 namespace Mono.Languages
13 {
14         using System;
15         using System.Reflection;
16
17         [AttributeUsage(AttributeTargets.Class)]
18         public class DefaultParserAttribute : System.Attribute 
19         {
20                 // just a boolean marker
21         }
22 }